source: main/trunk/model-sites-dev/von-sparql/transform/pages/style.css@ 29424

Last change on this file since 29424 was 29424, checked in by sjs49, 9 years ago

Changes made to CSS styles for a few new elements

File size: 2.9 KB
Line 
1/************************/
2/**** comparison.xsl ****/
3/************************/
4
5
6#div_selectCollections{
7 float: left;
8 padding-bottom:10px;
9}
10
11#div_quickSearch{
12 float: right;
13}
14
15#div_queryWrapper{
16 width: 100%;
17 height: auto;
18 border: 1px solid black;
19 display:table;
20 table-layout:fixed;
21 margin-bottom: 2px;
22}
23
24#div_queryWrapper > div{
25 height:100%;
26 width:50%;
27 padding: 5px;
28 display:table-cell;
29}
30
31#div_queryWrapper select{
32 max-width: 300px;
33}
34
35#div_leftQuery{
36 border-right:1px solid black;
37}
38
39#div_comparisonWrapper{
40 width: 100%;
41 max-height: 300px;
42 border: 1px solid black;
43 display: table;
44 table-layout: fixed;
45}
46#div_comparisonWrapper > div{
47 padding:5px;
48 display: table-cell;
49 height: 300px;
50}
51
52#div_combinedQuery{
53 width:70%;
54}
55
56#div_combinedResults{
57 width: auto;
58 max-height:350px;
59}
60
61#div_resultPredicates{
62 margin-left:10px;
63}
64
65#div_venn{
66 width: 35%;
67 height: auto;
68 border-right: 1px solid black;
69 margin-bottom: 3px;
70}
71#venn{
72 width:100%;
73 height: 170px;
74 border:1px solid #DFD9C3;
75 margin-top:10px;
76 margin-bottom:10px;
77}
78
79.searchControls{
80 margin-left:5px;
81 margin-bottom:5px;
82}
83
84.filteredDatasetTable{
85 height:200px;
86}
87
88.colorIndicator{
89 height:10px;
90 width:10px;
91 display:inline-block;
92 border:1px solid #DFD9C3;
93 margin-top:4px;
94 padding:1px;
95 border-radius:10px;
96 opacity:0.75;
97}
98
99
100.collectionNameDiv{
101 text-align:center;
102 margin-bottom:10px;
103}
104
105.collectionName{
106 font-size:1.2em;
107 text-decoration: underline;
108 font-weight:bold;
109 padding:10px;
110 margin-bottom: 15px;
111}
112/************************/
113/**** about.xsl *********/
114/************************/
115#div_about{
116 margin:15px;
117 font-weight:bold;
118 text-decoration: underline;
119}
120#div_PredicateOverview{
121 height:260px;
122 width:100%;
123}
124#sgvzl_PredicateOverview{
125 /*left:20%;*/
126 width:60%;
127 height:250px;
128 display:inline-block;
129}
130
131#sparqlQuery-area{
132 border:1px solid #DFD9C3;
133 width:655px;
134 height:auto;
135 padding:10px;
136}
137
138#searchContainer{
139 width:100%;
140 height:auto;
141 overflow:auto;
142}
143
144#searchControls{
145 margin-top:10px;
146 margin-bottom:5px;
147}
148
149#refineControls{
150 margin-left:20px;
151 margin-top:5px
152}
153
154#selectDataset{
155 width:30%;
156 float:right;
157 border:1px solid #DFD9C3;
158 padding:10px;
159}
160
161#span_sparqlQuery{
162 font-size: 10pt;
163 display:block;
164}
165
166/************************/
167/******* global *********/
168/************************/
169
170.ui-autocomplete{
171 position: absolute;
172 max-height: 300px;
173 overflow-y: auto;
174 overflow-x: hidden;
175 z-index: 1000 !important;
176}
177
178.basicControls{
179 margin-top:5px;
180 border-top:1px inset #dfd9c3;
181}
182.refineControls{
183 margin-top:5px;
184 border-top:1px inset #dfd9c3;
185 border-bottom:1px inset #dfd9c3;
186}
187.alignRight{
188 text-align:right;
189}
190
191.autocomplete-custom{
192 padding-left:5px;
193 padding-bottom:3px;
194 font-size:1em;
195}
196
197ul.ui-autocomplete.ui-menu{
198 font-size:0.8em;
199}
200.ui-autocomplete-loading{
201 background: white url('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/images/ui-anim_basic_16x16.gif') right center no-repeat;
202}
203
204.bold{
205 font-weight: bold;
206}
Note: See TracBrowser for help on using the repository browser.