source: extensions/UserCollections/template/style_collections.css @ 24421

Last change on this file since 24421 was 24421, checked in by mistic100, 11 years ago

new system for shares : password protection, link timeout, management popup + for mails
handle lightbox conflicts
menublock is visible by AMM

File size: 2.7 KB
Line 
1#colProperties {}
2  #colProperties p {
3    text-align:left;
4    margin:2px 0;
5  }
6  #colProperties p.title {
7    font-weight:bold;
8  }
9  #colProperties p:not(.title) {
10    margin-bottom:10px;
11  }
12 
13#publicURL {
14  display:inline-block;
15  height:22px;
16}
17  #publicURL .url {
18    display:inline-block;
19    height:14px;
20    vertical-align:bottom;
21    padding:3px 10px;
22    background:#fff;
23    font-family:monospace;
24    font-size:12px;
25    color:#666;
26    border:1px solid #999;
27    border-radius:0 3px 3px 0;
28  }
29  #publicURL .button {
30    display:inline-block;
31    background:#e7e7e7 url('resources/link.png') center center no-repeat;
32    width:25px;
33    height:20px;
34    vertical-align:bottom;
35    border:1px solid #999;
36    border-right:none;
37    border-radius:3px 0 0 3px;
38    cursor:pointer;
39  }
40  #publicURL .confirm {
41    font-weight:bold;
42    margin-left:5px;
43  }
44
45.thumbnailCategory {
46  position:relative;
47}
48.thumbnailCategory .collectionActions {
49  display:none;
50  position:absolute;
51  right:5px;
52  bottom:5px;
53}
54.thumbnailCategory:hover .collectionActions {
55  display:block;
56}
57
58/* SEND BY MAIL */
59.uc_form {
60  width:540px;
61  padding:10px;
62}
63  .uc_form table td {
64    padding-bottom:5px;
65    text-align:left;
66  }
67  .uc_form table td.title {
68    font-weight:bold;
69    text-align:right !important;
70    padding-top:3px;
71    vertical-align:top;
72    width:120px;
73    white-space:nowrap;
74  }
75  .uc_form input[type="text"], .uc_form textarea, .uc_form select {
76    border-radius:2px;
77    padding:3px;
78  }
79 
80#share_form .url-base {
81  font-size:0.9em;
82}
83#share_form .url-more {
84  text-decoration:underline;
85}
86
87.ui-datepicker-current { display:none; }
88
89.shares_list {
90        border-left:1px solid #444;
91        border-right:1px solid #444;
92        margin:1em auto;
93        padding:0;
94  background-color:#222;
95  border-spacing:0;
96  text-align:left;
97  color:#aaa;
98}
99
100.shares_list td, .shares_list th {
101        padding:5px 5px 2px 5px;
102  vertical-align:center;
103  border-top:1px solid #444;
104  border-bottom:1px solid #111;
105}
106 
107.shares_list tr.row2 td { background-color:#222; }
108.shares_list tr.row1 td { background-color:#333; }
109
110.shares_list tr.expired td {
111  text-decoration:line-through;
112}
113
114.shares_list tr.header th
115{
116  height:30px;
117}
118.shares_list tr.header th {
119  background:#333333;
120  background:-moz-linear-gradient(top,  #333333 0%, #222222 100%);
121  background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(100%,#222222));
122  background:-webkit-linear-gradient(top,  #333333 0%,#222222 100%);
123  background:-o-linear-gradient(top,  #333333 0%,#222222 100%);
124  background:-ms-linear-gradient(top,  #333333 0%,#222222 100%);
125  background:linear-gradient(top,  #333333 0%,#222222 100%);
126  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#222222',GradientType=0 );
127}
Note: See TracBrowser for help on using the repository browser.