blob: 3cd2d26ebe203f42b1ad567a2c32a53058b556a0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* CSS Stylesheet for threads.
*
* author: hearnden@google.com (David Hearnden)
*/
.thread {
}
.toggle {
cursor: pointer;
margin: 0 0.5em;
white-space: nowrap; /* Keeps bubble and arrow together. */
display: inline-block; /* Inline, but with background. */
height: 13px;
width: 15px;
position: relative;
}
.toggle.expanded {
background-image: url('thread_expanded.png');
}
.toggle.collapsed {
background-image: url('thread_collapsed.png');
}
.chrome {
margin: 1em 0.5em 1em -2em;
box-shadow: 0px 0px 4px #808080;
-moz-box-shadow: 0px 0px 4px #808080;
-webkit-box-shadow: 0px 0px 4px #808080;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.chrome.collapsed {
display: none;
}
.count.expanded {
position: relative;
}
.dropContainer.collapsed {
display: none;
}
.dropContainer.expanded {
position: absolute;
text-align: center;
left: 0;
right: 0;
bottom: 0;
line-height: 0; /* Height comes only from image. */
}
.drop {
background-color: white;
background-image: url("callout.png");
display: inline-block;
height: 12px;
width: 18px;
vertical-align: bottom;
margin-bottom: -1.33em; /* Magic height. */
}