source: VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/main/webapp/css/toggleborder.scss @ 5562

Last change on this file since 5562 was 5562, checked in by Twan Goosen, 10 years ago

modularised VCR SCSS. Tweaked layout of collections table
Refs #594

File size: 1.3 KB
Line 
1/*
2Copyright (C) 2014 CLARIN
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 3 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program.  If not, see <http://www.gnu.org/licenses/>.
16*/
17
18div.toggleBorder {
19    border-top: 1px solid #000000;
20}
21
22div.toggleBorder div.toggleBorderHeader {
23    margin: 0;
24    padding: 2px 2px 2px 16px;
25    border-bottom: 1px solid #000000;
26    color: inherit;
27    background-color: #D4DEEF;
28    background-image: url('../icons/bullet_arrow_up.png');
29    background-repeat: no-repeat;
30    background-position: center left;
31    cursor: pointer;
32}
33
34div.toggleBorder div.toggleBorderHeader span {
35    font-weight: bold;
36}
37
38div.toggleBorder div.toggleBorderHeader.collapsed {
39    background-image: url('../icons/bullet_arrow_down.png');
40    background-repeat: no-repeat;
41    background-position: center left;
42}
43
44div.toggleBorder div.toggleBorderContent {
45    margin: 0;
46    padding: 5px;
47}
48
Note: See TracBrowser for help on using the repository browser.