2012-09-21 04:46:45 +00:00
|
|
|
/* Welcome to Compass.
|
|
|
|
|
* In this file you should write your main styles. (or centralize your imports)
|
|
|
|
|
* Import this file using the following HTML or equivalent:
|
|
|
|
|
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@import "compass/reset";
|
|
|
|
|
@import "compass/css3/images";
|
|
|
|
|
@import "compass/css3/background-size";
|
2013-01-27 18:34:09 +00:00
|
|
|
@import "compass/css3/opacity";
|
2012-09-21 04:46:45 +00:00
|
|
|
|
2012-10-03 00:54:29 +00:00
|
|
|
@import "client/common.css.scss";
|
2012-09-21 04:46:45 +00:00
|
|
|
|
2014-02-14 23:41:01 +00:00
|
|
|
html.wf-inactive {
|
|
|
|
|
body {
|
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
body {
|
2012-11-22 19:36:43 +00:00
|
|
|
color: $ColorText;
|
|
|
|
|
background-color: $ColorUIBackground;
|
2012-09-21 04:46:45 +00:00
|
|
|
width: 100%;
|
2012-11-22 19:36:43 +00:00
|
|
|
height: 100%;
|
2012-09-21 04:46:45 +00:00
|
|
|
overflow: hidden;
|
2012-12-31 20:56:18 +00:00
|
|
|
font-size: 14px;
|
2014-02-14 23:41:01 +00:00
|
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
2012-12-31 20:56:18 +00:00
|
|
|
font-weight: 300;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
|
|
|
|
|
2013-01-10 16:08:59 +00:00
|
|
|
b { font-weight: bold; }
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
a {
|
|
|
|
|
cursor:pointer;
|
2012-11-22 19:36:43 +00:00
|
|
|
color: $ColorLink;
|
2013-01-10 16:08:59 +00:00
|
|
|
text-decoration: none;
|
2013-01-13 01:31:13 +00:00
|
|
|
display: inline-block;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-31 02:11:59 +00:00
|
|
|
[layout-link] {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
2013-03-20 01:14:23 +00:00
|
|
|
color: $ColorLinkHover;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
|
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
a.arrow-up {
|
|
|
|
|
float:right;
|
|
|
|
|
margin-right:5px;
|
|
|
|
|
display:block;
|
|
|
|
|
margin-top:6px;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
|
border-bottom: 7px solid #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.arrow-down {
|
|
|
|
|
float:right;
|
|
|
|
|
margin-right:5px;
|
|
|
|
|
display:block;
|
|
|
|
|
margin-top:6px;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
|
border-top: 7px solid #333;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-05 07:58:19 +00:00
|
|
|
select {
|
2013-03-20 01:14:23 +00:00
|
|
|
padding:3px;
|
|
|
|
|
font-size:15px;
|
2013-10-04 00:02:46 +00:00
|
|
|
border-radius: 6px;
|
2013-02-05 07:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
2012-09-29 17:48:23 +00:00
|
|
|
form .body {
|
|
|
|
|
/* TODO - size with layout */
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40%;
|
|
|
|
|
max-height: 40%;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.formrow {
|
2012-09-29 17:48:23 +00:00
|
|
|
margin: 1em;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
border: 1px solid #555;
|
|
|
|
|
float:left;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
2012-10-26 03:24:05 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
label {
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-11 20:34:05 +00:00
|
|
|
.button1 {
|
|
|
|
|
background: $color1;
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
padding:8px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
input[type="button"] {
|
|
|
|
|
margin:0px 8px 0px 8px;
|
|
|
|
|
background-color:#666;
|
|
|
|
|
border: solid 1px #868686;
|
|
|
|
|
outline:solid 2px #666;
|
|
|
|
|
padding:3px 10px;
|
|
|
|
|
font-size:12px;
|
|
|
|
|
font-weight:300;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
color:#ccc;
|
2013-01-26 22:49:44 +00:00
|
|
|
}
|
|
|
|
|
|
2013-01-13 01:31:13 +00:00
|
|
|
.clearall {
|
2013-01-26 22:49:44 +00:00
|
|
|
clear:both;
|
2013-01-13 01:31:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.left {
|
2013-01-26 22:49:44 +00:00
|
|
|
float:left;
|
2013-01-13 01:31:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
2013-01-26 22:49:44 +00:00
|
|
|
float:right;
|
2013-01-11 03:43:30 +00:00
|
|
|
}
|
|
|
|
|
|
2012-10-26 03:24:05 +00:00
|
|
|
.hidden {
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 19:34:03 +00:00
|
|
|
.small {
|
|
|
|
|
font-size:11px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-02 22:25:59 +00:00
|
|
|
.center {
|
|
|
|
|
text-align:center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block {
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 22:13:53 +00:00
|
|
|
.orange {
|
|
|
|
|
color: $ColorScreenPrimary !important;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.curtain {
|
2013-02-10 18:51:37 +00:00
|
|
|
background-color: $ColorScreenBackground;
|
|
|
|
|
position:absolute;
|
|
|
|
|
top:0px;
|
|
|
|
|
left:0px;
|
|
|
|
|
}
|
|
|
|
|
.curtain .splash {
|
|
|
|
|
position:absolute;
|
|
|
|
|
left:50%;
|
|
|
|
|
top:50%;
|
|
|
|
|
margin-top:-100px;
|
|
|
|
|
margin-left:-125px;
|
|
|
|
|
}
|
|
|
|
|
.curtain .splash img {}
|
|
|
|
|
.curtain .splash p {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align:center;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
2013-02-10 18:51:37 +00:00
|
|
|
|
2013-01-27 18:34:09 +00:00
|
|
|
.dialog-overlay {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
2012-09-21 04:46:45 +00:00
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
display: block;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.avatar.medium {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.avatar.small {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-02 00:19:21 +00:00
|
|
|
.avatar-tiny {
|
|
|
|
|
width:20px;
|
|
|
|
|
heigh:20px;
|
|
|
|
|
-webkit-border-radius:18px;
|
|
|
|
|
-moz-border-radius:18px;
|
|
|
|
|
border-radius:18px;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-08 15:13:47 +00:00
|
|
|
/* Invitations */
|
|
|
|
|
#invitation-controls {
|
|
|
|
|
clear:both;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-11 20:34:05 +00:00
|
|
|
/* TODO - generalize */
|
2013-02-08 03:20:45 +00:00
|
|
|
.instrument {
|
2012-11-08 15:13:47 +00:00
|
|
|
margin: 1px;
|
2012-11-22 19:36:43 +00:00
|
|
|
background: $ColorElementPrimary;
|
|
|
|
|
color:$ColorText;
|
2012-11-08 15:13:47 +00:00
|
|
|
padding: 3px;
|
|
|
|
|
width:auto;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-08 03:20:45 +00:00
|
|
|
.instrument span {
|
2012-11-08 15:13:47 +00:00
|
|
|
font-size:85%;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-11 20:34:05 +00:00
|
|
|
.profiency {
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-08 15:13:47 +00:00
|
|
|
/* Autocomplete */
|
|
|
|
|
.autocomplete {
|
2013-02-05 07:58:19 +00:00
|
|
|
background:$ColorScreenBackground;
|
2012-11-22 19:36:43 +00:00
|
|
|
color:$ColorText;
|
2012-11-08 15:13:47 +00:00
|
|
|
cursor:default;
|
|
|
|
|
text-align:left;
|
|
|
|
|
max-height:350px;
|
|
|
|
|
overflow:auto;
|
2013-02-07 03:42:51 +00:00
|
|
|
margin:-1px 6px 6px -6px;
|
2013-02-05 07:58:19 +00:00
|
|
|
_height:350px; /* IE6 specific: */
|
2012-11-08 15:13:47 +00:00
|
|
|
_margin:0;
|
|
|
|
|
_overflow-x:hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-18 07:27:02 +00:00
|
|
|
.autocomplete-suggestions { border: 1px solid #999; background: #666; overflow: auto; }
|
2014-02-16 08:10:17 +00:00
|
|
|
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
|
|
|
|
|
.autocomplete-selected { background: #F0F0F0; }
|
|
|
|
|
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
|
|
|
|
|
|
2013-02-05 07:58:19 +00:00
|
|
|
.autocomplete .selected {
|
|
|
|
|
background:$ColorScreenBackground;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
2012-11-08 15:13:47 +00:00
|
|
|
|
2013-02-05 07:58:19 +00:00
|
|
|
.autocomplete div {
|
2013-02-07 03:42:51 +00:00
|
|
|
padding:5px 5px 5px 5px;
|
2013-02-05 07:58:19 +00:00
|
|
|
white-space:nowrap;
|
|
|
|
|
overflow:hidden;
|
2013-02-07 03:42:51 +00:00
|
|
|
border-bottom:1px solid #999;
|
|
|
|
|
border-left:1px solid #999;
|
|
|
|
|
border-right:1px solid #999;
|
2013-02-05 07:58:19 +00:00
|
|
|
text-align:center;
|
|
|
|
|
}
|
2012-11-08 15:13:47 +00:00
|
|
|
|
2013-02-05 07:58:19 +00:00
|
|
|
.autocomplete strong {
|
|
|
|
|
font-weight:normal;
|
|
|
|
|
}
|
2012-11-08 15:13:47 +00:00
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
.multiselect-dropdown {
|
|
|
|
|
position:relative;
|
|
|
|
|
z-index:99;
|
|
|
|
|
width: 175px;
|
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background-color:#C5C5C5;
|
|
|
|
|
border: none;
|
|
|
|
|
color:#333;
|
|
|
|
|
font-weight:400;
|
|
|
|
|
padding:0px 0px 0px 8px;
|
|
|
|
|
height:20px;
|
|
|
|
|
line-height:20px;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
-webkit-box-shadow: inset 2px 2px 3px 0px #888;
|
|
|
|
|
box-shadow: inset 2px 2px 3px 0px #888;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.multiselect-dropdown a {
|
|
|
|
|
color:#333;
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-items {
|
|
|
|
|
float:left;
|
|
|
|
|
width:175px;
|
|
|
|
|
height:127px;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-item-text {
|
|
|
|
|
font-size:11px;
|
|
|
|
|
float:left;
|
|
|
|
|
width:135px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-21 05:52:28 +00:00
|
|
|
.search-box {
|
|
|
|
|
float:left;
|
|
|
|
|
width:140px;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
|
border-radius: 6px;
|
2013-01-30 15:43:29 +00:00
|
|
|
background-color:$ColorTextBoxBackground;
|
2013-01-21 05:52:28 +00:00
|
|
|
border: none;
|
|
|
|
|
color:#333;
|
|
|
|
|
font-weight:400;
|
|
|
|
|
padding:0px 0px 0px 8px;
|
2013-02-14 02:04:54 +00:00
|
|
|
height:18px;
|
|
|
|
|
line-height:18px;
|
2013-01-21 05:52:28 +00:00
|
|
|
overflow:hidden;
|
|
|
|
|
-webkit-box-shadow: inset 2px 2px 3px 0px #888;
|
|
|
|
|
box-shadow: inset 2px 2px 3px 0px #888;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 19:34:03 +00:00
|
|
|
input[type="text"], input[type="password"]{
|
2013-01-30 15:43:29 +00:00
|
|
|
background-color:$ColorTextBoxBackground;
|
|
|
|
|
border:none;
|
|
|
|
|
color:#666;
|
2013-03-20 01:14:23 +00:00
|
|
|
padding:3px;
|
|
|
|
|
font-size:15px;
|
2013-01-11 03:43:30 +00:00
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
.mr10 {
|
|
|
|
|
margin-right:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr20 {
|
|
|
|
|
margin-right:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr30 {
|
|
|
|
|
margin-right:30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml10 {
|
|
|
|
|
margin-left:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml20 {
|
|
|
|
|
margin-left:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml30 {
|
|
|
|
|
margin-left:30px;
|
|
|
|
|
}
|
2012-10-22 02:55:05 +00:00
|
|
|
|
2013-01-21 05:52:28 +00:00
|
|
|
.ml35 {
|
|
|
|
|
margin-left:35px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-09 17:02:53 +00:00
|
|
|
.op70 {
|
|
|
|
|
opacity: .7;
|
|
|
|
|
-ms-filter: "alpha(opacity=70)";
|
|
|
|
|
}
|
2013-01-14 01:43:48 +00:00
|
|
|
|
2014-02-18 06:01:14 +00:00
|
|
|
.op50 {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
-ms-filter: "alpha(opacity=50)";
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
.op30 {
|
|
|
|
|
opacity: .3;
|
|
|
|
|
-ms-filter: "alpha(opacity=30)";
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-18 06:01:14 +00:00
|
|
|
.op10 {
|
|
|
|
|
opacity: .1;
|
|
|
|
|
-ms-filter: "alpha(opacity=10)";
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
.nowrap {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
white-space:nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:34:29 +00:00
|
|
|
.error {
|
|
|
|
|
background-color:#300;
|
|
|
|
|
padding:5px;
|
|
|
|
|
border: solid 1px #900;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error input {
|
|
|
|
|
background-color:#Fadfd1 !important;
|
|
|
|
|
margin-bottom:5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-text {
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error .error-text {
|
|
|
|
|
display:block;
|
|
|
|
|
font-size:11px;
|
|
|
|
|
color:#F00;
|
2013-05-14 19:03:50 +00:00
|
|
|
margin:10px 0 0;
|
2013-03-20 01:34:29 +00:00
|
|
|
}
|
2013-03-20 01:14:23 +00:00
|
|
|
.grey {
|
|
|
|
|
color:#999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.darkgrey {
|
|
|
|
|
color:#333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w10 {
|
|
|
|
|
width:10%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w20 {
|
|
|
|
|
width:20%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-10 02:56:30 +00:00
|
|
|
.w25 {
|
|
|
|
|
width:25%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w27 {
|
|
|
|
|
width:27%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
.w30 {
|
|
|
|
|
width:30%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-10 02:56:30 +00:00
|
|
|
.w38 {
|
|
|
|
|
width:38%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
.w40 {
|
|
|
|
|
width:40%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-10 02:56:30 +00:00
|
|
|
.w45 {
|
|
|
|
|
width:45%;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
.w50 {
|
|
|
|
|
width:50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w60 {
|
|
|
|
|
width:60%;
|
|
|
|
|
}
|
2013-03-20 01:34:29 +00:00
|
|
|
|
2013-03-20 01:14:23 +00:00
|
|
|
.w70 {
|
|
|
|
|
width:70%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w80 {
|
|
|
|
|
width:80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w90 {
|
|
|
|
|
width:90%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.w100 {
|
|
|
|
|
width:100%;
|
|
|
|
|
}
|
2013-02-15 15:44:37 +00:00
|
|
|
|
2013-10-21 22:13:53 +00:00
|
|
|
.f20 {
|
|
|
|
|
font-size: 20px !important;
|
|
|
|
|
}
|
2013-02-15 15:44:37 +00:00
|
|
|
/* TODO - we need a separate stylesheet(s) for signin/signup screens */
|
|
|
|
|
/* Following is a style adjustment for the sign-in table spacing */
|
|
|
|
|
#sign-in td { padding: 4px; }
|
|
|
|
|
|
2013-06-01 18:32:54 +00:00
|
|
|
.spinner-large {
|
|
|
|
|
background-image: url('/assets/shared/spinner.gif');
|
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
|
background-position:center;
|
|
|
|
|
width:128px;
|
|
|
|
|
height:128px;
|
2013-06-02 00:19:25 +00:00
|
|
|
}
|
2013-09-17 02:20:22 +00:00
|
|
|
|
2014-02-21 22:02:51 +00:00
|
|
|
.spinner-small {
|
|
|
|
|
background-image: url('/assets/shared/spinner.gif');
|
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
|
background-position:center;
|
|
|
|
|
width:32px;
|
|
|
|
|
height:32px;
|
|
|
|
|
background-size: 50% 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-09 18:04:56 +00:00
|
|
|
.infinite-scroll-loader {
|
|
|
|
|
position:absolute;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
height:14px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin:auto;
|
|
|
|
|
width:100%;
|
|
|
|
|
}
|
2014-02-21 22:02:51 +00:00
|
|
|
|
2013-09-17 02:20:22 +00:00
|
|
|
// disable text selection for the in-session panel, ftue, and arbitrary elements marked with .no-selection-range
|
|
|
|
|
div[layout-id=session], div[layout-id=ftue], .no-selection-range {
|
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
2014-01-06 20:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.icheckbuttons {
|
|
|
|
|
|
|
|
|
|
margin-top:5px;
|
|
|
|
|
|
|
|
|
|
div.iradio_minimal {
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
float:left;
|
|
|
|
|
margin:0 10px 0 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-10 06:31:20 +00:00
|
|
|
|
|
|
|
|
hr {
|
|
|
|
|
background-color: #999999;
|
|
|
|
|
border: 0 none;
|
|
|
|
|
height: 1px;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
2014-03-11 07:40:58 +00:00
|
|
|
|
2014-03-20 11:53:26 +00:00
|
|
|
::-webkit-input-placeholder {
|
|
|
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size:14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:-moz-placeholder { /* Firefox 18- */
|
|
|
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size:14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-moz-placeholder { /* Firefox 19+ */
|
|
|
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size:14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:-ms-input-placeholder {
|
|
|
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size:14px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-11 07:40:58 +00:00
|
|
|
// infinitescroll required element
|
|
|
|
|
.btn-next-pager {
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.end-of-list {
|
|
|
|
|
display:none;
|
|
|
|
|
overflow: visibility;
|
|
|
|
|
margin:40px auto 10px;
|
|
|
|
|
width:100%;
|
|
|
|
|
height:20px;
|
|
|
|
|
text-align:center;
|
2014-04-22 17:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.jam .icheckbox_minimal {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
position:relative;
|
2014-03-11 07:40:58 +00:00
|
|
|
}
|