adding missing admin css file, some other tweaks and cleanup
parent
c1755d0dba
commit
dec9a3bef9
@ -0,0 +1,76 @@
|
|||||||
|
.inline-block {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
*cursor: hand;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry-row {
|
||||||
|
border-radius: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: move;
|
||||||
|
width: 555px;
|
||||||
|
}
|
||||||
|
.admin-categories {
|
||||||
|
form {
|
||||||
|
margin: 0 0 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
height: 20px;
|
||||||
|
padding: 5px;
|
||||||
|
margin-left: 10px;
|
||||||
|
width: 150px;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 5px;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
border: 0;
|
||||||
|
margin-left: 10px;
|
||||||
|
padding: 5px;
|
||||||
|
margin-top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
margin-top: -7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon{
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 35px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.themes {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
padding: 10px 16px;
|
||||||
|
margin: 0.25em 1em;
|
||||||
|
.inline-block;
|
||||||
|
.pointer;
|
||||||
|
-webkit-border-radius: 10px;
|
||||||
|
-moz-border-radius: 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
-webkit-transition: background-color 250ms linear;
|
||||||
|
-moz-transition: background-color 250ms linear;
|
||||||
|
-ms-transition: background-color 250ms linear;
|
||||||
|
-o-transition: background-color 250ms linear;
|
||||||
|
transition: background-color 250ms linear;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(128, 128, 128, 0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue