2010-10-02 04:06:01 +02:00
|
|
|
@fill_normal: #e3e9ff;
|
|
|
|
@fill_accent: #bbccff;
|
|
|
|
@line_accent: #bbccff;
|
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
@link_primary: #11c;
|
|
|
|
@link_secondary: #4272db;
|
|
|
|
@chrome_primary: #bcf;
|
|
|
|
@chrome_secondary: #e3e9ff;
|
|
|
|
@fill_primary: #ebeef8;
|
|
|
|
@fill_secondary: #f2f2f2;
|
2010-10-15 08:42:24 +02:00
|
|
|
@green_primary: #282;
|
|
|
|
@green_secondary: #3d3;
|
2010-10-14 19:39:41 +02:00
|
|
|
@faint_grey: #ddd;
|
|
|
|
@light_grey: #999;
|
|
|
|
@metadata_grey: #777;
|
|
|
|
@near_black: #444;
|
2010-10-15 04:23:22 +02:00
|
|
|
@dialog_frame: #3a5774;
|
|
|
|
@dialog_border: #c1d9ff;
|
|
|
|
@dialog_header: #e0edfe;
|
|
|
|
@dialog_footer: #eee;
|
2010-10-14 19:39:41 +02:00
|
|
|
|
2010-10-02 04:06:01 +02:00
|
|
|
@padding_tighter: 3px;
|
2010-10-14 19:39:41 +02:00
|
|
|
@padding_tight: 5px;
|
|
|
|
@padding_normal: 7px;
|
2010-10-02 04:06:01 +02:00
|
|
|
@padding_loose: 10px;
|
|
|
|
@padding_looser: 15px;
|
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
.rounded_corners (@radius: 5px) {
|
|
|
|
-moz-border-radius: @radius;
|
|
|
|
-webkit-border-radius: @radius;
|
|
|
|
border-radius: @radius;
|
|
|
|
}
|
|
|
|
|
2010-10-15 04:23:22 +02:00
|
|
|
.sharp_corners_left () {
|
|
|
|
-webkit-border-top-right-radius: 0;
|
|
|
|
-webkit-border-bottom-right-radius: 0;
|
|
|
|
-moz-border-radius-topright: 0;
|
|
|
|
-moz-border-radius-bottomright: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sharp_corners_right () {
|
|
|
|
-moz-border-radius-topleft: 0;
|
|
|
|
-moz-border-radius-bottomleft: 0;
|
|
|
|
-webkit-border-top-left-radius: 0;
|
|
|
|
-webkit-border-bottom-left-radius: 0;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2010-10-18 06:18:09 +02:00
|
|
|
|
|
|
|
.rounded_corners_bottom (@radius: 10px) {
|
|
|
|
-webkit-border-bottom-left-radius: @radius;
|
|
|
|
-webkit-border-bottom-right-radius: @radius;
|
|
|
|
-moz-border-radius-bottomleft: @radius;
|
|
|
|
-moz-border-radius-bottomright: @radius;
|
|
|
|
border-bottom-left-radius: @radius;
|
|
|
|
border-bottom-right-radius: @radius;
|
|
|
|
}
|