2010-10-20 20:11:15 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 2010, Google Inc.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are
|
|
|
|
met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
|
|
in the documentation and/or other materials provided with the
|
|
|
|
distribution.
|
|
|
|
* Neither the name of Google Inc. nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
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-22 03:43:56 +02:00
|
|
|
@fill_editable: #ffffd6;
|
2010-10-19 07:46:48 +02:00
|
|
|
@selected_primary: #68e;
|
2010-10-15 08:42:24 +02:00
|
|
|
@green_primary: #282;
|
|
|
|
@green_secondary: #3d3;
|
2010-10-19 07:46:48 +02:00
|
|
|
@notification_primary: #fe8;
|
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-19 07:46:48 +02:00
|
|
|
|
2010-10-22 03:43:56 +02:00
|
|
|
.rounded_corners_top (@radius: 5px) {
|
|
|
|
-webkit-border-top-left-radius: @radius;
|
|
|
|
-webkit-border-top-right-radius: @radius;
|
|
|
|
-moz-border-radius-topleft: @radius;
|
|
|
|
-moz-border-radius-topright: @radius;
|
|
|
|
border-top-right-radius: @radius;
|
|
|
|
border-top-left-radius: @radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rounded_corners_bottom (@radius: 5px) {
|
|
|
|
-webkit-border-bottom-left-radius: @radius;
|
|
|
|
-webkit-border-bottom-right-radius: @radius;
|
|
|
|
-moz-border-radius-bottomleft: @radius;
|
|
|
|
-moz-border-radius-bottomright: @radius;
|
|
|
|
border-bottom-right-radius: @radius;
|
|
|
|
border-bottom-left-radius: @radius;
|
|
|
|
}
|
|
|
|
|
2011-08-02 05:34:47 +02:00
|
|
|
.rounded_corners_left (@radius: 5px) {
|
|
|
|
-webkit-border-top-left-radius: @radius;
|
|
|
|
-webkit-border-bottom-left-radius: @radius;
|
|
|
|
-moz-border-radius-topleft: @radius;
|
|
|
|
-moz-border-radius-bottomleft: @radius;
|
|
|
|
border-top-left-radius: @radius;
|
|
|
|
border-bottom-left-radius: @radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rounded_corners_right (@radius: 5px) {
|
|
|
|
-webkit-border-top-right-radius: @radius;
|
|
|
|
-webkit-border-bottom-right-radius: @radius;
|
|
|
|
-moz-border-radius-topright: @radius;
|
|
|
|
-moz-border-radius-bottomright: @radius;
|
|
|
|
border-top-right-radius: @radius;
|
|
|
|
border-bottom-right-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;
|
|
|
|
}
|