diff options
| author | Zog | 2017-12-18 09:11:03 +0100 | 
|---|---|---|
| committer | Zog | 2017-12-19 17:02:37 +0100 | 
| commit | 74da4b28490d0b8822e74ddf8a7e897d1fc24588 (patch) | |
| tree | d496177afc1126f7c84b605f64dc954469cb3cf4 | |
| parent | 7fb417235919a4c577f2c456db28edc63dc18d63 (diff) | |
| download | chouette-core-74da4b28490d0b8822e74ddf8a7e897d1fc24588.tar.bz2 | |
Refs #5291@0.1h; Add missing styles
Add missing styles for disabled checkboxes
| -rw-r--r-- | app/assets/stylesheets/base/_config.sass | 1 | ||||
| -rw-r--r-- | app/assets/stylesheets/components/_forms.sass | 7 | 
2 files changed, 8 insertions, 0 deletions
| diff --git a/app/assets/stylesheets/base/_config.sass b/app/assets/stylesheets/base/_config.sass index 65444479f..ec1c43e7f 100644 --- a/app/assets/stylesheets/base/_config.sass +++ b/app/assets/stylesheets/base/_config.sass @@ -16,6 +16,7 @@ $blue: #007fbb  $darkgrey: #4b4b4b  $grey: #a4a4a4 +$lightgrey: rgba($grey, 0.15)  $green: #70b12b  $red: #da2f36 diff --git a/app/assets/stylesheets/components/_forms.sass b/app/assets/stylesheets/components/_forms.sass index 9a363ab97..47faf19b1 100644 --- a/app/assets/stylesheets/components/_forms.sass +++ b/app/assets/stylesheets/components/_forms.sass @@ -229,6 +229,13 @@ $cbx-size-xs: 15px      &[type='checkbox']:checked + label:before        background-color: $blue +    &[type='checkbox']:disabled + label +      &:before +        border-color: $grey +        background-color: $lightgrey +        cursor: not-allowed +      &:after +        display: none  // Table adjustments  table, .table    .td, td, .th, th | 
