source: extensions/PublicAdmin/template/style.css @ 24879

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

create plugin PublicAdmin
(only photo:name, photo:comment and photo:author are editable for now)

File size: 649 bytes
Line 
1#publicAdmin span {
2  color:white;
3  font-weight:bold;
4  padding:3px 8px;
5  border-radius:5px;
6  float:left;
7  margin:0 5px;
8  cursor:pointer;
9}
10
11#publicAdmin .edit {
12  background:blue;
13}
14#publicAdmin .edit:hover {
15  background:#55f;
16}
17#publicAdmin .save {
18  background:green;
19  display:none;
20}
21#publicAdmin .save:hover {
22  background:#585;
23}
24#publicAdmin .cancel {
25  background:red;
26  display:none;
27}
28#publicAdmin .cancel:hover {
29  background:#f55;
30}
31
32textarea.publicAdmin {
33  display:block;
34  width:500px;
35  height:150px;
36  margin:0 auto;
37}
38
39.publicAdmin {
40  box-shadow:0px 0px 10px red;
41  border-radius:5px;
42  z-index:1000;
43  position:relative;
44}
Note: See TracBrowser for help on using the repository browser.