source: vlo/trunk/vlo-web-app/src/main/less/eu/clarin/cmdi/vlo/wicket/pages/vlo-top.less @ 5146

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

Migrated from css to less (contents not actually changed). css/less imports are now carried out compile time
Also removed mockup html pages

File size: 2.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/*
18    Created on : Jan 28, 2014, 2:37:38 PM
19    Author     : twagoo
20*/
21
22/* Navigation bar */
23
24#topnavigation {
25    margin: 8px 15px 2px 15px;
26    padding: 0px 4px 0px 8px;
27    /*min-height: 1.5em;*/
28}
29
30#topnavigation #breadcrumbs {
31    float: left;
32    clear: left;
33    width: 75%;
34    padding-bottom: .5em;
35}
36
37#topnavigation #topnavigationlinks {
38    float: right;
39    clear: right;
40    text-align: right;
41    width: 20%;
42    padding-bottom: .5em;
43}
44
45span.breadcrumbfacet {
46    padding: 4px;
47}
48
49a.breadcrumbunselect, a.breadcrumbunselect:hover {
50    text-decoration: none;
51}
52
53a.breadcrumbunselect {
54    display: inline-block;
55    width: 16px;
56    height: 20px;
57    background-image: url('x-mark-128.png');
58    background-repeat: no-repeat;
59    background-size: 12px;
60    background-position: 2px 3px;
61    vertical-align: middle;
62}
63
64a.breadcrumbunselect span {
65    display: none;
66}
67
68form#permalink {
69    display: inline;
70}
71
72form#permalink input {
73    /* permalink submit button should look like link to fit in with other links */
74    display: inline;
75    border: none;
76    background: none;
77    text-decoration: underline;
78    color: #00f;
79    font-family: inherit;
80    font-size: inherit;
81    padding: 0;
82    cursor: pointer;
83}
84
85form#permalink input:hover {
86    color: #000;
87}
88
89#permalinkfield
90{
91    float: right;
92    position: relative;
93    top: 1em;
94    width: 30em;
95    margin-bottom: 1em;
96    text-align: right;
97}
98
99/* Feedback panel */
100
101div#feedback ul {
102    margin-right: 2em;
103    list-style-type: none;
104}
105
106div#feedback li {
107    list-style-type: none;
108    padding: .2em;
109}
110
111div#feedback li.feedbackPanelERROR {
112    border: 3px solid red;
113    color: red;
114    font-weight: bold;
115}
Note: See TracBrowser for help on using the repository browser.