root/SPARQLBuilderWWW/web/eplesscs.css @ 293

リビジョン 278, 2.1 KB (コミッタ: lenz, 9 年 前)

CSSとイベントハンドルを微調整

  • 属性 svn:mime-type の設定値 text/plain
行番号 
1@charset "UTF-8";
2
3div.wrap {
4        position: absolute;
5        top: 0px;
6        bottom: 0px;
7        left: 0px;
8        right: 0px;
9        background-color: rgba(0,0,0,0.8);
10}
11
12div.classselect {
13        position: absolute;
14        top: 0px;
15        bottom: 0px;
16        left: 0px;
17        right: 0px;
18        margin: auto;
19        width: 90%;
20        height: 90%;
21        overflow: hidden;
22        background: #fafafa;
23}
24
25div.left {
26        float: left;
27        width: 50%;
28        height: 100%;
29        padding: 5px 0px;
30}
31
32div.right {
33        float: right;
34        width: 50%;
35        height: 100%;
36        padding: 5px 0px;
37}
38
39div.startclass, div.endclass {
40        padding: 5px 0px;
41}
42
43#searchstarttext, #searchendtext {
44        width: 100%;
45}
46
47span.startclassuri:hover {
48        cursor: pointer;
49
50        -moz-border-radius: 10px;
51        -webkit-border-radius: 10px;
52        border-radius: 10px;
53        padding: 3px;
54
55        background-color: hsl(40, 50%, 75%);
56}
57
58span.endclassuri:hover {
59        cursor: pointer;
60
61        -moz-border-radius: 10px;
62        -webkit-border-radius: 10px;
63        border-radius: 10px;
64        padding: 3px;
65
66        background-color: hsl(150, 50%, 75%);
67}
68
69span.endpointuri {
70    display: block;
71    margin: 3px;
72    padding-left: 30px;
73}
74
75span.endpointuri:hover {
76        -moz-border-radius: 5px;
77        -webkit-border-radius: 5px;
78        border-radius: 5px;
79        background-color: hsl(200, 50%, 75%);
80}
81
82span.selectedstart {
83        cursor: pointer;
84
85        -moz-border-radius: 10px;
86        -webkit-border-radius: 10px;
87        border-radius: 10px;
88        padding: 2px;
89        border: 2px hsl(40, 50%, 50%) solid;
90
91        background-color: hsl(40, 50%, 75%);
92}
93
94span.selectedend {
95        cursor: pointer;
96
97        -moz-border-radius: 10px;
98        -webkit-border-radius: 10px;
99        border-radius: 10px;
100        padding: 2px;
101
102        border: 2px hsl(150, 50%, 50%) solid;
103
104        background-color: hsl(150, 50%, 75%);
105}
106
107span.selectedendpoint {
108        text-align: center;
109        -moz-border-radius: 5px;
110        -webkit-border-radius: 5px;
111        border-radius: 5px;
112        padding: 1px;
113
114        border: 2px hsl(200, 50%, 50%) solid;
115        background-color: hsl(200, 50%, 75%);
116}
117
118table {
119        width: 100%;
120}
121
122tr.nohit {
123        display: none;
124}
125
126tr.endpointrow th {
127        text-align: center;
128        -moz-border-radius: 5px;
129        -webkit-border-radius: 5px;
130        border-radius: 5px;
131        padding: 3px;
132
133        background-color: hsl(200, 50%, 75%);
134}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。