Blue as default color for table header

This commit is contained in:
Marc Ducobu 2015-08-26 13:29:17 +02:00
parent 2b45d4cec5
commit 7dc3514e00
3 changed files with 11 additions and 8 deletions

View File

@ -4967,22 +4967,23 @@ table {
width: 100%; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\000034}}
table thead {
background-color: unset;
color: #fff; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\000038}}
background-color: unset; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\000037}}
table thead tr th {
border: unset;
text-align: center;
padding: 0.3em; }
padding: 0.3em;
color: #334d5c; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\0000317}}
table tbody tr td {
border: 1px solid #000;
text-align: left;
padding: 0.3em; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\0000323}}
padding: 0.3em;
color: unset; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\0000324}}
table tbody tr:nth-of-type(even) {
background-color: #e6e6e6; }
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\0000327}}
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/modules\/_table\.scss}line{font-family:\0000328}}
table tbody tr:nth-of-type(odd) {
background-color: #fff; }

File diff suppressed because one or more lines are too long

View File

@ -25,6 +25,8 @@ $form-border-size: 1px;
// Table
$table-head-bg-color: unset;
$table-head-text-color: $chill-blue;
$table-body-tr-bg-color-even: $chill-llight-gray;
$table-body-tr-bg-color-odd: $white;
$table-body-td-border: 1px solid $black;