Ignore:
Timestamp:
08/20/14 09:10:24 (10 years ago)
Author:
Twan Goosen
Message:

Styling of the wizard
Refs #594

File:
1 edited

Legend:

Unmodified
Added
Removed
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css/_feedback.scss

    r5572 r5574  
    1818#feedback ul {
    1919    padding-left: 0px;
     20
     21    $feedbackiconsize: 16px;
     22
     23    li {
     24        font-weight: bold;
     25        padding: 5px 5px 5px $feedbackiconsize + 8;
     26        list-style: none;
     27        margin: 1em;
     28        min-height: $feedbackiconsize;
     29        background-size: $feedbackiconsize;
     30        background-repeat: no-repeat;
     31        background-position-x: 4px;
     32        background-position-y: 50%;
     33
     34        @include roundborder(6px);
     35
     36        &.feedbackPanelERROR {
     37            background-image: url(../icons/glyphicons_078_warning_sign.png);
     38            background-color: $red;
     39            color: wheat;
     40        }
     41    }
    2042}
    2143
    22 #feedback ul li {
    23     font-weight: bold;
    24     padding: 5px;
    25     list-style: none;   
    26 }
    27 
    28 #feedback ul li.feedbackPanelERROR {
    29     background: red;
    30 }
Note: See TracChangeset for help on using the changeset viewer.