1 | .libraryRow { |
---|
2 | background-color: $form_title_bg_bottom; |
---|
3 | } |
---|
4 | |
---|
5 | .datasetHighlighted { |
---|
6 | background-color: $menu_bg_over; |
---|
7 | } |
---|
8 | |
---|
9 | .libraryItemDeleted-True { |
---|
10 | font-style: italic; |
---|
11 | } |
---|
12 | |
---|
13 | div.libraryItemBody { |
---|
14 | padding: 4px 4px 2px 4px; |
---|
15 | } |
---|
16 | |
---|
17 | li.folderRow, |
---|
18 | li.datasetRow |
---|
19 | { |
---|
20 | border-top: solid 1px #ddd; |
---|
21 | } |
---|
22 | |
---|
23 | li.folderRow:hover, |
---|
24 | li.datasetRow:hover |
---|
25 | { |
---|
26 | background-color: $menu_bg_over; |
---|
27 | } |
---|
28 | |
---|
29 | img.expanderIcon { |
---|
30 | padding-right: 4px; |
---|
31 | } |
---|
32 | |
---|
33 | input.datasetCheckbox, |
---|
34 | li, ul |
---|
35 | { |
---|
36 | padding: 0; |
---|
37 | margin: 0; |
---|
38 | } |
---|
39 | |
---|
40 | .rowTitle |
---|
41 | { |
---|
42 | padding: 2px; |
---|
43 | } |
---|
44 | |
---|
45 | ul { |
---|
46 | list-style: none; |
---|
47 | } |
---|
48 | |
---|
49 | .libraryTitle th { |
---|
50 | text-align: left; |
---|
51 | } |
---|
52 | |
---|
53 | pre.peek |
---|
54 | { |
---|
55 | background: white; |
---|
56 | color: black; |
---|
57 | width: 100%; |
---|
58 | overflow: auto; |
---|
59 | } |
---|
60 | |
---|
61 | pre.peek th |
---|
62 | { |
---|
63 | color: white; |
---|
64 | background: $peek_table_header; |
---|
65 | } |
---|
66 | |
---|
67 | span.expandLink { |
---|
68 | padding-left: 20px; |
---|
69 | display: inline-block; |
---|
70 | vertical-align: middle; |
---|
71 | background: url(../images/silk/resultset_next.png) no-repeat; |
---|
72 | } |
---|
73 | |
---|
74 | .folderRow.expanded span.expandLink { |
---|
75 | background: url(../images/silk/resultset_bottom.png) no-repeat; |
---|
76 | } |
---|
77 | |
---|
78 | .folderRow span.rowIcon { |
---|
79 | float: left; |
---|
80 | width: 16px; |
---|
81 | height: 16px; |
---|
82 | display: inline-block; |
---|
83 | vertical-align: middle; |
---|
84 | background: url(../images/silk/folder.png); |
---|
85 | } |
---|
86 | |
---|
87 | .libraryItem-error { |
---|
88 | margin-right: 2px; |
---|
89 | padding: 0 2px 0 2px; |
---|
90 | border: 1px solid $history_error_border; |
---|
91 | background: $history_error_bg; |
---|
92 | } |
---|
93 | |
---|
94 | .libraryItem-queued { |
---|
95 | margin-right: 2px; |
---|
96 | padding: 0 2px 0 2px; |
---|
97 | border: 1px solid $history_queued_border; |
---|
98 | background: $history_queued_bg; |
---|
99 | } |
---|
100 | |
---|
101 | .libraryItem-running { |
---|
102 | margin-right: 2px; |
---|
103 | padding: 0 2px 0 2px; |
---|
104 | border: 1px solid $history_running_border; |
---|
105 | background: $history_running_bg; |
---|
106 | } |
---|
107 | |
---|
108 | .libraryItem-upload { |
---|
109 | margin-right: 2px; |
---|
110 | padding: 0 2px 0 2px; |
---|
111 | border: 1px solid $history_upload_border; |
---|
112 | background: $history_upload_bg; |
---|
113 | } |
---|