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

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

Styling of collections table: icons, sorting
Refs #594

File size: 1.5 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
18@import 'globals';
19
20div.toggleBorder {
21    border-top: 1px solid #000000;
22}
23
24div.toggleBorder div.toggleBorderHeader {
25    margin: 0;
26    padding: 2px 2px 2px 16px;
27    border-bottom: 1px solid #000000;
28    color: inherit;
29    background-color: #D4DEEF;
30    /* icon from GLYPHICONS.com */
31    background-image: url('../icons/glyphicons_369_collapse_top.png');
32    background-size: $iconsize;
33    background-repeat: no-repeat;
34    background-position: center left;
35    cursor: pointer;
36}
37
38div.toggleBorder div.toggleBorderHeader span {
39    font-weight: bold;
40}
41
42div.toggleBorder div.toggleBorderHeader.collapsed {
43    /* icon from GLYPHICONS.com */
44    background-image: url('../icons/glyphicons_367_expand.png');
45    background-size: $iconsize;
46    background-repeat: no-repeat;
47    background-position: center left;
48}
49
50div.toggleBorder div.toggleBorderContent {
51    margin: 0;
52    padding: 5px;
53}
54
Note: See TracBrowser for help on using the repository browser.