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-02 04:06:01 +02:00
|
|
|
@import-less url("theme.less");
|
|
|
|
|
|
|
|
#body {
|
2010-10-14 19:39:41 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#project-title, #project-controls {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
display: none;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
#project-title {
|
|
|
|
left: 140px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 4px 0 0 0;
|
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#project-controls {
|
|
|
|
right: 0;
|
|
|
|
height: 40px;
|
|
|
|
font-size: 1.3em;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
|
|
|
#project-name-button {
|
2010-10-14 19:39:41 +02:00
|
|
|
padding: 3px;
|
|
|
|
border: 1px solid transparent;
|
2010-10-02 04:06:01 +02:00
|
|
|
}
|
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
#project-name-button:hover {
|
2010-10-22 03:43:56 +02:00
|
|
|
background: @fill_editable;
|
2010-10-14 19:39:41 +02:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-top: 1px solid #aaa;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
#project-permalink-button {
|
|
|
|
padding: 0 4px;
|
|
|
|
font-size: 0.7em;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
|
|
|
#left-panel {
|
2010-10-14 19:39:41 +02:00
|
|
|
position: fixed;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0px;
|
|
|
|
padding-top: @padding_tight;
|
|
|
|
font-size: 1.3em;
|
2010-10-23 01:32:37 +02:00
|
|
|
background: @chrome_secondary;
|
2010-10-14 19:39:41 +02:00
|
|
|
}
|
2010-10-25 03:07:25 +02:00
|
|
|
|
|
|
|
#left-panel .ui-tabs .ui-tabs-panel {
|
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2010-10-14 19:39:41 +02:00
|
|
|
|
2010-10-02 04:06:01 +02:00
|
|
|
#right-panel {
|
2010-10-14 19:39:41 +02:00
|
|
|
position: fixed;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0px;
|
|
|
|
padding-left: @padding_tight;
|
|
|
|
background: @chrome_primary;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
|
|
|
#tool-panel {
|
2010-10-14 19:39:41 +02:00
|
|
|
position: relative;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
#summary-bar {
|
2020-05-30 13:01:26 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin: 7px 0px 0px 4px;
|
2010-10-14 19:39:41 +02:00
|
|
|
font-size: 1.8em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#summary-total {
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
|
|
|
#extension-bar {
|
2010-10-14 19:39:41 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
2010-10-15 01:31:27 +02:00
|
|
|
right: @padding_loose;
|
2010-10-14 19:39:41 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
font-size: 1.3em;
|
|
|
|
padding: @padding_tight 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#extension-bar .secondary {
|
|
|
|
font-size: 0.85em;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
|
|
|
#view-panel {
|
2010-10-15 01:31:27 +02:00
|
|
|
background: white;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2010-10-02 04:06:01 +02:00
|
|
|
|
2010-10-14 19:39:41 +02:00
|
|
|
#facet-panel, #history-panel {
|
2010-10-15 01:31:27 +02:00
|
|
|
overflow: auto;
|
|
|
|
}
|