mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
Improve hyperlink color
Closes #261 Still more work to do, but an improvement nonetheless.
This commit is contained in:
parent
40a0d77f93
commit
f17de58fff
10 changed files with 32 additions and 23 deletions
|
@ -163,7 +163,7 @@ $color-sidebar: #f2f8fd;
|
|||
* This is the default theme of PURPLE.
|
||||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #160624;
|
||||
|
@ -177,4 +177,6 @@ $theme-200: #EAD9F9;
|
|||
$theme-100: #FBF7FE;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
|
2
gui/app/styles/core/bootstrap.scss
vendored
2
gui/app/styles/core/bootstrap.scss
vendored
|
@ -80,7 +80,7 @@ $input-focus-border-color: map-get($gray-shades, 200);
|
|||
// links
|
||||
$link-color: $color-link;
|
||||
$link-decoration: none;
|
||||
$link-hover-color: darken($link-color, 15%) !default;
|
||||
$link-hover-color: $color-link-hover !default;
|
||||
$link-hover-decoration: none;
|
||||
|
||||
//
|
||||
|
|
|
@ -17,7 +17,7 @@ a {
|
|||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
a:focus, a:hover {
|
||||
text-decoration: none;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -63,11 +63,6 @@
|
|||
margin-right: 10px;
|
||||
width: 90%;
|
||||
@extend .text-truncate;
|
||||
color: map-get($green-shades, 800);
|
||||
|
||||
&:hover {
|
||||
color: map-get($green-shades, 900);
|
||||
}
|
||||
}
|
||||
|
||||
> .menu {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
*
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #1F0902;
|
||||
|
@ -30,6 +30,8 @@ $theme-200: #F9B39E;
|
|||
$theme-100: #FEF2EE;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
||||
@import "../core/all.scss";
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
*
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #071C2A;
|
||||
|
@ -30,6 +30,8 @@ $theme-200: #B4DAF3;
|
|||
$theme-100: #EEF7FC;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
||||
@import "../core/all.scss";
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
*
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #001412;
|
||||
|
@ -30,6 +30,8 @@ $theme-200: #CFFFF9;
|
|||
$theme-100: #F1FFFD;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
||||
@import "../core/all.scss";
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
*
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #180E05;
|
||||
|
@ -30,6 +30,8 @@ $theme-200: #EEC7A4;
|
|||
$theme-100: #F6E1CF;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
||||
@import "../core/all.scss";
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
*
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #1F2833;
|
||||
|
@ -30,6 +30,8 @@ $theme-200: #D5DDE5;
|
|||
$theme-100: #E1E7EB;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
||||
@import "../core/all.scss";
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* We go from 100 (lightest) to 900 (darkest).
|
||||
*
|
||||
* Base shade is 500 and is used prominmently as the
|
||||
* Base shade is 500 and is used prominently as the
|
||||
* left-side navigation sidebar color.
|
||||
**************************************************************/
|
||||
$theme-900: #312A09;
|
||||
|
@ -30,6 +30,8 @@ $theme-200: #F2E9BD;
|
|||
$theme-100: #FBF7E8;
|
||||
|
||||
// Set hyperlink color for theme
|
||||
$color-link: map-get($green-shades, 700);
|
||||
// $color-link: map-get($green-shades, 700);
|
||||
$color-link: #0080a5;
|
||||
$color-link-hover: #0fb4e2;
|
||||
|
||||
@import "../core/all.scss";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue