Merge pull request #4034 from hoergen/develop
Style buttons, lists, inputs and some cleanup
This commit is contained in:
commit
b0c7cc0211
1 changed files with 108 additions and 6 deletions
|
@ -206,18 +206,36 @@ nav #nav-search-box #nav-search-text {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Left Widget Column */
|
||||||
|
|
||||||
|
#search-submit, #search-save {
|
||||||
|
font-size:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Timeline */
|
/* Timeline */
|
||||||
|
|
||||||
|
.profile-jot-text {
|
||||||
|
border-radius:5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-jot-text:focus {
|
||||||
|
background-color:#eef3ff;
|
||||||
|
}
|
||||||
|
|
||||||
div.pager, ul.tabs {
|
div.pager, ul.tabs {
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Post*/
|
/* Post*/
|
||||||
|
|
||||||
#profile-jot-form { border-radius: 5px; }
|
#profile-jot-form { border-radius: 5px; }
|
||||||
|
|
||||||
.tread-wrapper { border-radius: 5px; }
|
.tread-wrapper { border-radius: 5px; }
|
||||||
|
|
||||||
|
|
||||||
/* Post header */
|
/* Post header */
|
||||||
|
|
||||||
.wall-item-container .wall-item-name,
|
.wall-item-container .wall-item-name,
|
||||||
|
@ -247,6 +265,7 @@ div.pager, ul.tabs {
|
||||||
|
|
||||||
.dt-published { font-size:10px; }
|
.dt-published { font-size:10px; }
|
||||||
|
|
||||||
|
|
||||||
/* Post content */
|
/* Post content */
|
||||||
.wall-item-content blockquote {
|
.wall-item-content blockquote {
|
||||||
border-left: 0px;
|
border-left: 0px;
|
||||||
|
@ -305,9 +324,17 @@ div.pager, ul.tabs {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Post footer */
|
/* Post footer */
|
||||||
.wall-item-like { font-size:12px; }
|
.wall-item-like { font-size:12px; }
|
||||||
|
|
||||||
|
.wall-item-actions{
|
||||||
|
font-size:10px;
|
||||||
|
font-weight:normal;
|
||||||
|
margin-bottom: -0.7em;
|
||||||
|
line-height: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.wall-item-actions-author{
|
.wall-item-actions-author{
|
||||||
font-size:10px;
|
font-size:10px;
|
||||||
font-weight:normal;
|
font-weight:normal;
|
||||||
|
@ -345,7 +372,8 @@ div.pager, ul.tabs {
|
||||||
width: 10px;
|
width: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* comments */
|
|
||||||
|
/* Comments */
|
||||||
|
|
||||||
.wall-item-like { font-size:10px; }
|
.wall-item-like { font-size:10px; }
|
||||||
|
|
||||||
|
@ -368,6 +396,13 @@ div.pager, ul.tabs {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon.s10.lock.fakelink {
|
||||||
|
color: #999;
|
||||||
|
width:80px;
|
||||||
|
vertical-align:top;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Calendar */
|
/* Calendar */
|
||||||
|
|
||||||
.fc-body { background-color: white; }
|
.fc-body { background-color: white; }
|
||||||
|
@ -411,11 +446,21 @@ option {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* styling */
|
/* styling */
|
||||||
select {
|
|
||||||
border: 1px solid #bbb;
|
select{
|
||||||
background-color: lightgrey;
|
background-image:
|
||||||
box-shadow: 0 0px 0px 0 rgba(0,0,0,0.5);
|
linear-gradient(45deg, transparent 50%, gray 50%),
|
||||||
height:20px;
|
linear-gradient(135deg, gray 50%, transparent 50%),
|
||||||
|
linear-gradient(to right, #ccc, #ccc);
|
||||||
|
background-position: right center;
|
||||||
|
background-size:
|
||||||
|
9px 9px,
|
||||||
|
9px 9px,
|
||||||
|
15px 2.5em;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-color: #eef3ff;
|
||||||
|
border: 1px solid;
|
||||||
|
border-color: grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
|
@ -441,9 +486,41 @@ select {
|
||||||
}
|
}
|
||||||
|
|
||||||
#settings-form {
|
#settings-form {
|
||||||
|
background-color: #ededed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ps-container.ps-theme-default h4{
|
||||||
|
font-weight:bold;
|
||||||
background-color: whitesmoke;
|
background-color: whitesmoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ps-container.ps-theme-default.ps-active-y h4{
|
||||||
|
background-color:#EEE;
|
||||||
|
}
|
||||||
|
#adminpage {
|
||||||
|
background-color: #ededed;
|
||||||
|
}
|
||||||
|
#adminpage h3{
|
||||||
|
font-size:20px;
|
||||||
|
font-weight:bold;
|
||||||
|
background-color: whitesmoke;
|
||||||
|
padding-top:30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminpage h1{
|
||||||
|
font-size:20px;
|
||||||
|
font-weight:bold;
|
||||||
|
background-color: whitesmoke;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminpage textarea {
|
||||||
|
width: 700px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.field input {
|
||||||
|
width:700px;
|
||||||
|
}
|
||||||
|
|
||||||
.field_help {
|
.field_help {
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -455,6 +532,29 @@ select {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Admin user page */
|
||||||
|
|
||||||
|
#users {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users_ckbx {
|
||||||
|
width:20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon.block.dim:after {
|
||||||
|
content: '\259E';
|
||||||
|
color: darkgrey;
|
||||||
|
background-color: rgb(229, 229, 229);
|
||||||
|
}
|
||||||
|
|
||||||
|
td.checkbox, td.tools{
|
||||||
|
width:22px;
|
||||||
|
background-color: rgb(229, 229, 229);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* popup */
|
/* popup */
|
||||||
|
|
||||||
ul.menu-popup {
|
ul.menu-popup {
|
||||||
|
@ -465,12 +565,14 @@ ul.menu-popup a {
|
||||||
padding: 0 0 0 5px;
|
padding: 0 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Growl Popup */
|
/* Growl Popup */
|
||||||
|
|
||||||
.jGrowl, .notice * {
|
.jGrowl, .notice * {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
|
|
||||||
input[type=submit] {
|
input[type=submit] {
|
||||||
|
|
Loading…
Reference in a new issue