2012-09-14 11:01:26 -04:00
|
|
|
/**
|
|
|
|
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
|
|
|
**/
|
2018-07-10 16:59:14 -04:00
|
|
|
|
|
|
|
@import url("../dark/style.css") all;
|
|
|
|
|
2012-09-14 11:01:26 -04:00
|
|
|
/* global */
|
|
|
|
body {
|
|
|
|
font-family: Liberation Sans, helvetica, arial, clean, sans-serif;
|
|
|
|
font-size: 11px;
|
2017-02-08 01:21:19 -05:00
|
|
|
background-color: #F6ECF9;
|
2012-09-14 11:01:26 -04:00
|
|
|
color: #2d2d2d;
|
2015-12-04 13:57:19 -05:00
|
|
|
margin: 50px 0 0 0;
|
2012-09-14 11:01:26 -04:00
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
a,
|
|
|
|
a:link {
|
|
|
|
color: #521f5c;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:visited {
|
|
|
|
color: #86608e;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: #86608e;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
.fakelink {
|
|
|
|
color: #521f5c;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.fakelink:hover {
|
|
|
|
color: #86608e;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
/* nav */
|
|
|
|
nav {
|
|
|
|
width: 100%;
|
|
|
|
height: 32px;
|
|
|
|
position: fixed;
|
2015-12-04 13:57:19 -05:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
padding: 0;
|
2012-09-14 11:01:26 -04:00
|
|
|
background-color: #521f5c;
|
|
|
|
color: #ffffff;
|
|
|
|
z-index: 100;
|
2015-12-04 13:57:19 -05:00
|
|
|
-webkit-box-shadow: 0px 0 10px rgba(0, 0, 0, 0.7);
|
|
|
|
-moz-box-shadow: 0px 0 10px rgba(0, 0, 0, 0.7);
|
|
|
|
box-shadow: 0px 0 10px rgba(0, 0, 0, 0.7);
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
|
|
|
nav .nav-menu-icon.selected {
|
|
|
|
background-color: #cbd38d;
|
|
|
|
}
|
|
|
|
nav .nav-menu {
|
|
|
|
position: relative;
|
|
|
|
height: 16px;
|
|
|
|
padding: 5px;
|
2015-12-04 13:57:19 -05:00
|
|
|
margin: 3px 15px 0;
|
2012-09-14 11:01:26 -04:00
|
|
|
font-size: 14px;
|
|
|
|
border-bottom: 3px solid #521f5c;
|
|
|
|
}
|
|
|
|
nav .nav-notify {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background-color: #86608e;
|
|
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
|
|
border-radius: 5px 5px 5px 5px;
|
|
|
|
font-size: 10px;
|
|
|
|
padding: 1px 3px;
|
2015-12-04 13:57:19 -05:00
|
|
|
top: 0;
|
2012-09-14 11:01:26 -04:00
|
|
|
right: -10px;
|
|
|
|
min-width: 15px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
nav #nav-apps-link.selected {
|
|
|
|
background-color: #cbd38d;
|
|
|
|
}
|
|
|
|
ul.menu-popup a:hover {
|
|
|
|
background-color: #c0a3c7;
|
|
|
|
}
|
2013-02-22 10:45:40 -05:00
|
|
|
.autocomplete > div.selected,
|
2012-09-14 11:01:26 -04:00
|
|
|
.acpopupitem.selected {
|
|
|
|
background-color: #c0a3c7;
|
|
|
|
}
|
2016-01-21 07:28:29 -05:00
|
|
|
.textcomplete-item.active {
|
|
|
|
background-color: #c0a3c7;
|
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
aside #wallmessage-link {
|
|
|
|
display: block;
|
|
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
|
|
border-radius: 5px 5px 5px 5px;
|
|
|
|
color: #ffffff;
|
|
|
|
background: #521f5c url('../../../images/connect-bg.png') no-repeat left center;
|
2012-09-14 11:01:26 -04:00
|
|
|
font-weight: bold;
|
2018-07-10 16:59:14 -04:00
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 4px 2px 2px 35px;
|
|
|
|
margin-top: 3px;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
aside #wallmessage-link:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #86608e;
|
|
|
|
}
|
|
|
|
aside #dfrn-request-link {
|
2012-09-14 11:01:26 -04:00
|
|
|
display: block;
|
2018-07-10 16:59:14 -04:00
|
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
|
|
border-radius: 5px 5px 5px 5px;
|
|
|
|
color: #ffffff;
|
|
|
|
background: #521f5c url('icons/connect-bg.png') no-repeat left center;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 4px 2px 2px 35px;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
|
|
|
aside #dfrn-request-link:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #86608e;
|
|
|
|
}
|
2015-11-29 05:18:32 -05:00
|
|
|
aside #subscribe-feed-link {
|
|
|
|
display: block;
|
|
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
|
|
border-radius: 5px 5px 5px 5px;
|
|
|
|
color: #ffffff;
|
2015-12-04 13:57:19 -05:00
|
|
|
background: #521f5c url('icons/rss-bg.png') no-repeat left center;
|
2015-11-29 05:18:32 -05:00
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 4px 2px 2px 35px;
|
|
|
|
}
|
|
|
|
aside #subscribe-feed-link:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #86608e;
|
|
|
|
}
|
2012-09-14 11:01:26 -04:00
|
|
|
.comment-edit-preview {
|
|
|
|
width: 710px;
|
|
|
|
border: 1px solid #2d2d2d;
|
|
|
|
margin-top: 10px;
|
|
|
|
background-color: #c0a3c7;
|
|
|
|
}
|
|
|
|
.comment-edit-preview .tread-wrapper {
|
|
|
|
width: 90%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 10px 0;
|
|
|
|
background-color: #c0a3c7;
|
2015-12-04 13:57:19 -05:00
|
|
|
border-bottom: 0;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
|
|
|
.shiny {
|
|
|
|
border-right: 10px solid #c0a3c7;
|
|
|
|
}
|
|
|
|
#jot-preview-content .tread-wrapper {
|
|
|
|
background-color: #c0a3c7;
|
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#contacts-actions .batch-action:hover {
|
|
|
|
background-color: #c0a3c7;
|
2012-10-01 09:53:02 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#contact-edit-status-wrapper {
|
|
|
|
border-color: #86608e;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#jot #jot-tools {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 40px;
|
|
|
|
overflow: none;
|
|
|
|
width: 770px;
|
|
|
|
background-color: #521f5c;
|
|
|
|
border-bottom: 2px solid #9eabb0;
|
2012-10-01 09:53:02 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#jot #jot-tools li:hover {
|
|
|
|
background-color: #86608e;
|
|
|
|
border-bottom: 2px solid #bdcdd4;
|
2012-10-01 09:53:02 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#jot #jot-tools li.submit input:hover {
|
|
|
|
background-color: #521f5c;
|
2012-10-01 09:53:02 -04:00
|
|
|
color: #666666;
|
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#jot #jot-title {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
height: 20px;
|
2012-09-14 11:01:26 -04:00
|
|
|
width: 500px;
|
2018-07-10 16:59:14 -04:00
|
|
|
font-weight: bold;
|
|
|
|
border: 1px solid #F6ECF9;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
#jot #jot-category {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
height: 20px;
|
|
|
|
width: 200px;
|
|
|
|
border: 1px solid #F6ECF9;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
ul.tabs li .active {
|
|
|
|
border-bottom: 1px solid #86608e;
|
2012-09-14 11:01:26 -04:00
|
|
|
}
|
2018-07-10 16:59:14 -04:00
|
|
|
.pager .disabled {
|
2013-12-17 05:19:06 -05:00
|
|
|
display: none;
|
|
|
|
}
|
2015-07-28 11:20:40 -04:00
|
|
|
.fbrowser .path {
|
|
|
|
background-color: #521f5c;
|
|
|
|
}
|