source: extensions/gvideo/admin/template/style.css @ 28268

Last change on this file since 28268 was 28268, checked in by mistic100, 10 years ago

allow to add any video with direct embed code + add batch manager filter

File size: 1.6 KB
Line 
1div.left {
2  float:left;
3  width:50%;
4}
5div.right {
6  float:right;
7  width:50%;
8}
9
10FORM.properties SPAN.property {
11  width:180px;
12}
13
14img.icon {
15  vertical-align:middle;
16}
17
18label.color {
19  display:inline-block;
20  width:12px;
21  height:12px;
22  margin:3px;
23  vertical-align:middle;
24}
25  label.color:hover {
26    width:16px;
27    height:16px;
28    margin:1px;
29  }
30   
31  label.color.active {
32    border:1px solid #000;
33    border-radius:3px;
34    width:16px;
35    height:16px;
36    margin:0;
37  }
38    label.color.active.roma {
39      border-color:#fff;
40    }
41  label.color input {
42    visibility:hidden;
43  }
44
45ul.services li {
46  display:inline;
47  margin-left:20px;
48}
49
50.video_update {
51  display:none;
52}
53.video_update.warning {
54  display:block;
55  color:#c00;
56  font-weight:bold;
57}
58
59.providersInfo {
60  display:none;
61}
62.showProvidersInfo {
63  font-style:italic;
64  font-size:0.9em;
65}
66
67.radio {
68  margin-left:2em;
69}
70.radio input {
71  display:none;
72}
73.radio label {
74  display:inline-block;
75  background:#fff;
76  border:1px solid #ddd;
77  border-left-width:0;
78  padding:5px 10px;
79}
80  .radio label:first-of-type {
81    border-left-width:1px;
82    border-radius:5px 0 0 5px;
83  }
84  .radio label:last-of-type {
85    border-radius:0 5px 5px 0;
86  }
87  .radio input:checked + label {
88    background:#C6FF91;
89    background:linear-gradient(to bottom, #C6FF91, #A5E06D);
90    border-color:#A5E06D;
91    text-shadow:1px 1px 0 white;
92  }
93
94.custom-warn {
95  background-image:none;
96  padding:2px 5px;
97  margin-left:2em;
98  border-radius:5px;
99  min-height:0;
100  display:inline-block;
101}
102  .custom-warn ul li {
103    clear:none;
104    list-style:none;
105    margin:0 !important;
106  }
Note: See TracBrowser for help on using the repository browser.