root/SPARQLBuilderWWW/web/newsparqlbuilder.css @ 245

リビジョン 245, 3.7 KB (コミッタ: lenz, 10 年 前)

クラス選択フローの変更
Macでクラスなどの選択肢部分のスクロールバーがデフォルトで非表示にされてしまう機能を無効化(要検証)

  • 属性 svn:mime-type の設定値 text/plain
行番号 
1ul.select2-results__options{
2        -webkit-appearance: none;
3}
4#SPARQLBUILDER{
5        width: 90%;
6        margin: auto;
7        color: initial;
8        font-size: initial;
9        font-family: initial;
10}
11.SBSparqlArea{
12        width: 100%;
13}
14
15.SBTopButton{
16        margin: 0.5em 1em 0.5em 0;
17        -webkit-border-radius: 7;
18        -moz-border-radius: 7;
19        border-radius: 7px;
20        border: none;
21        color: #ffffff;
22        background: hsl(200, 50%, 75%);
23        padding: 5px 15px 5px 15px;
24        cursor: pointer;
25}
26
27.SBTopButton:hover{
28        background: hsl(200, 50%, 85%);
29}
30
31.SBTutorialLink{
32        margin-top: 1.5em;
33}
34
35.SBModalView{
36        position: absolute;
37        top: 0px;
38        bottom: 0px;
39        left: 0px;
40        right: 0px;
41        background-color: rgba(0,0,0,0.8);
42        display: none;
43        color: initial;
44        font-size: initial;
45        font-family: initial;
46}
47
48.SBModalContents{
49        position: absolute;
50        top: 0px;
51        bottom: 0px;
52        left: 0px;
53        right: 0px;
54        margin: auto;
55        width: 90%;
56        height: 90%;
57        background: white;
58        overflow: hidden;
59}
60
61.SBModalContents .SBForms{
62        float: left;
63        background-color: #eeeeff;
64}
65
66.SBModalContents .SBSelects{
67        float: left;
68}
69
70.SBModalContents .SBSelects .SBEndPointSelect{
71        width: 100%;
72        height: 2em;
73}
74
75.SBModalContents .SBSelects .SBStartClassSelect{
76        width: 50%;
77        height: 2em;
78}
79
80.SBModalContents .SBSelects .SBEndClassSelect{
81        width: 50%;
82        height: 2em;
83}
84
85
86.SBModalContents .SBPermaLink{
87        height: 100%;
88        float: right;
89        text-align: center;
90}
91
92.SBModalContents .SBPermaLinkButton{
93        display: inline-block;
94        margin-top: 10px;
95        width: 90%;
96        height: 36px;
97        -webkit-border-radius: 3;
98        -moz-border-radius: 3;
99        border-radius: 3px;
100        border: none;
101        color: #ffffff;
102        background: hsl(0, 50%, 75%);
103        padding: 3px 5px 3px 5px;
104        cursor: pointer;
105}
106
107.SBModalContents .SBPermaLinkButton:hover{
108        background: hsl(0, 50%, 85%);
109}
110
111.SBModalContents .SBMessage{
112        float: left;
113        text-align: center;
114        background-color: #eeeeff;
115}
116
117.SBModalContents .SBResult{
118        display: none;
119        height: 24px;
120        font-size: 18px;
121}
122
123.SBModalContents .SBViewAll{
124        display: none;
125        height: 28px;
126        -webkit-border-radius: 3;
127        -moz-border-radius: 3;
128        border-radius: 3px;
129        border: none;
130        color: #ffffff;
131        background: hsl(0, 50%, 75%);
132        padding: 3px 5px 3px 5px;
133        cursor: pointer;
134}
135
136.SBModalContents .SBViewAll:hover{
137        background: hsl(0, 50%, 85%);
138}
139
140.SBModalContents .SBGraph{
141        float: left;
142}
143
144.SBModalContents .SBAjaxLoad{
145        position: relative;
146        top: 0;
147        left:0;
148        height: 100%;
149        background: #fffafa;
150}
151
152.SBModalContents .SBLoadIcon{
153        position: absolute;
154        top: 0;
155        left: 0;
156        right: 0;
157        bottom: 0;
158        margin: auto;
159        width: 100px;
160        height: 100px;
161}
162
163.SBModalContents .SBPath{
164        float: left;
165        padding: 10px;
166        text-align: center;
167        word-wrap: break-word;
168}
169
170.SBRootNode{
171        margin: 0.5em;
172        margin-top: 1em;
173        -webkit-border-radius: 10;
174        -moz-border-radius: 10;
175        border-radius: 10px;
176        background: hsl(40, 50%, 75%);
177        padding: 5px 15px 5px 15px;
178}
179
180.SBPathProperty{
181        margin: 0.2em;
182}
183
184.SBPathNode{
185        margin: 0.5em;
186        -webkit-border-radius: 10;
187        -moz-border-radius: 10;
188        border-radius: 10px;
189        background: hsl(0, 0%, 85%);
190        padding: 5px 15px 5px 15px;
191}
192
193.SBLeafNode{
194        margin: 0.5em;
195        -webkit-border-radius: 10;
196        -moz-border-radius: 10;
197        border-radius: 10px;
198        background: hsl(150, 50%, 75%);
199        padding: 5px 15px 5px 15px;
200}
201
202.SBModalContents .SBModalButtons{
203        float: left;
204        text-align: center;
205}
206
207.SBModalButton{
208        display: inline-block;
209        width: 80%;
210        height: 26px;
211        -webkit-border-radius: 3;
212        -moz-border-radius: 3;
213        border-radius: 3px;
214        border: none;
215        color: #ffffff;
216        background: hsl(0, 50%, 75%);
217        padding: 3px 5px 3px 5px;
218        cursor: pointer;
219}
220
221.SBModalButton:hover{
222        background: hsl(0, 50%, 85%);
223}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。