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

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

Fixed the mystery error message that was written to console on every page load, by removing our loading of google's chart visualizations. Sgvizler does this by itself now it seems. Also made minor CSS changes.

File size: 3.0 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-top:7px;
81 margin-left:5px;
82 margin-bottom:7px;
83}
84
85.filteredDatasetTable{
86 height:200px;
87}
88
89.colorIndicator{
90 height:10px;
91 width:10px;
92 display:inline-block;
93 border:1px solid #DFD9C3;
94 margin-top:4px;
95 padding:1px;
96 border-radius:10px;
97 opacity:0.75;
98}
99
100
101.collectionNameDiv{
102 text-align:center;
103 margin-bottom:10px;
104}
105
106.collectionName{
107 font-size:1.2em;
108 text-decoration: underline;
109 font-weight:bold;
110 padding:10px;
111 margin-bottom: 15px;
112}
113
114.submitToComparison{
115 padding:7px;
116}
117
118.formButton{
119 margin-left:2px;
120 margin-right:2px;
121}
122/************************/
123/**** about.xsl *********/
124/************************/
125#div_about{
126 margin:15px;
127 font-weight:bold;
128 text-decoration: underline;
129}
130#div_PredicateOverview{
131 height:260px;
132 width:100%;
133}
134#sgvzl_PredicateOverview{
135 /*left:20%;*/
136 width:60%;
137 height:250px;
138 display:inline-block;
139}
140
141#sparqlQuery-area{
142 border:1px solid #DFD9C3;
143 width:655px;
144 height:auto;
145 padding:10px;
146}
147
148#searchContainer{
149 width:100%;
150 height:auto;
151 overflow:auto;
152}
153
154#refineControls{
155 margin-left:20px;
156 margin-top:5px
157}
158
159#selectDataset{
160 width:30%;
161 float:right;
162 border:1px solid #DFD9C3;
163 padding:10px;
164}
165
166#span_sparqlQuery{
167 font-size: 10pt;
168 display:block;
169}
170
171
172/************************/
173/******* global *********/
174/************************/
175
176.ui-autocomplete{
177 position: absolute;
178 max-height: 300px;
179 overflow-y: auto;
180 overflow-x: hidden;
181 z-index: 1000 !important;
182}
183
184.basicControls{
185 margin-top:5px;
186 border-top:1px inset #dfd9c3;
187}
188.refineControls{
189 margin-top:5px;
190 border-top:1px inset #dfd9c3;
191 border-bottom:1px inset #dfd9c3;
192}
193.alignRight{
194 text-align:right;
195}
196
197.autocomplete-custom{
198 padding-left:5px;
199 padding-bottom:3px;
200 font-size:1em;
201}
202
203ul.ui-autocomplete.ui-menu{
204 font-size:0.8em;
205}
206.ui-autocomplete-loading{
207 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;
208}
209
210.bold{
211 font-weight: bold;
212}
Note: See TracBrowser for help on using the repository browser.