mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
styles, replace colors by variables, minor changes with colors
This commit is contained in:
parent
a48d7f5e94
commit
9764ee1794
@ -148,7 +148,7 @@ div.banner {
|
||||
text-decoration: none;
|
||||
&.phone,
|
||||
&.email {
|
||||
color: white;
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
.id-number {
|
||||
@ -247,7 +247,7 @@ table.table-bordered {
|
||||
// move from chillmain.css, converted to sass
|
||||
|
||||
div#usefulbar {
|
||||
background-color: #fbba3a;
|
||||
background-color: $yellow;
|
||||
z-index: 1000;
|
||||
padding-right: 15px;
|
||||
|
||||
@ -265,11 +265,11 @@ div#usefulbar {
|
||||
padding-right: 10px;
|
||||
}
|
||||
li {
|
||||
color: white;
|
||||
color: $white;
|
||||
margin-left: 10px;
|
||||
a {
|
||||
color: white;
|
||||
text-shadow: 0px 0px 1px #555;
|
||||
color: $white;
|
||||
text-shadow: 0px 0px 1px $gray-600;
|
||||
}
|
||||
i.icon-user-add {
|
||||
&:before {
|
||||
@ -278,20 +278,18 @@ div#usefulbar {
|
||||
}
|
||||
&#search_element {
|
||||
text-align: right;
|
||||
}
|
||||
&#search_element div#search_form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
button {
|
||||
color: white;
|
||||
border: none;
|
||||
bottom: -2px;
|
||||
height: 35px;
|
||||
}
|
||||
}
|
||||
&#search_element div#search_form {
|
||||
div, .field {
|
||||
div#search_form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
div, .field {
|
||||
margin: 0;
|
||||
}
|
||||
button {
|
||||
color: $white;
|
||||
border: none;
|
||||
bottom: -2px;
|
||||
height: 35px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -310,6 +308,8 @@ div#flashMessages {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
// probably used in client chill.
|
||||
// think to rename like above
|
||||
input.belgian_national_number_inversed_date {
|
||||
width: 7em;
|
||||
margin-right: 1em;
|
||||
@ -321,3 +321,10 @@ input.belgian_national_number_daily_counter {
|
||||
input.belgian_national_number_control_digit {
|
||||
width: 3em;
|
||||
}
|
||||
|
||||
//
|
||||
input.belgian_national_number {
|
||||
&.inversed_date {}
|
||||
&.daily_counter {}
|
||||
&.control_digit {}
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ div.flex-bloc {
|
||||
&:first-child {
|
||||
flex-grow: 0; flex-shrink: 0; flex-basis: auto;
|
||||
padding-bottom: 0.5em;
|
||||
border-bottom: 1px dotted #0000004f;
|
||||
border-bottom: 1px dotted $gray-900;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
&:last-child {
|
||||
@ -79,6 +79,9 @@ div.flex-table {
|
||||
padding: 1em;
|
||||
&:nth-child(even) {
|
||||
background-color: $gray-200;
|
||||
.chill-user-quote {
|
||||
background-color: $gray-100;
|
||||
}
|
||||
}
|
||||
|
||||
div.item-row {
|
||||
@ -86,7 +89,7 @@ div.flex-table {
|
||||
flex-direction: row;
|
||||
&:not(:first-child) {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px dotted #0000004f;
|
||||
border-top: 1px dotted $gray-900;
|
||||
padding-top: 0.5em;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ $gray-400: #ced4da !default;
|
||||
$gray-500: #b2b2b2 !default;
|
||||
$gray-600: #6c757d !default;
|
||||
$gray-700: #495057 !default;
|
||||
$gray-800: #333333 !default;
|
||||
$gray-800: #2c2d2f !default;
|
||||
$gray-900: #212529 !default;
|
||||
$black: #111 !default;
|
||||
// scss-docs-end gray-color-variables
|
||||
|
Loading…
x
Reference in New Issue
Block a user