2018-03-22 16:35:36 +08:00
|
|
|
@import "constants";
|
2016-02-12 23:52:43 +08:00
|
|
|
@import "mixins";
|
2018-03-16 23:38:59 +08:00
|
|
|
@import "main_navigation";
|
2018-03-21 16:22:55 +08:00
|
|
|
@import "repositories";
|
2018-05-18 22:24:24 +08:00
|
|
|
@import "bootstrap/mixins/buttons";
|
2016-02-12 23:52:43 +08:00
|
|
|
/** Layout **/
|
|
|
|
|
|
|
|
body,
|
|
|
|
#main-nav,
|
|
|
|
#notifications,
|
|
|
|
#notifications .alert {
|
|
|
|
min-width: 320px;
|
|
|
|
}
|
|
|
|
|
2016-09-21 22:15:56 +08:00
|
|
|
// Word wrapping everywhere, except for table header of "datatables.js"
|
|
|
|
body,
|
|
|
|
table.dataTable td {
|
2016-09-21 21:54:12 +08:00
|
|
|
text-overflow: ellipsis;
|
2016-09-21 22:15:56 +08:00
|
|
|
word-break: break-word;
|
2017-04-11 20:26:08 +08:00
|
|
|
overflow-wrap: break-word;
|
2016-09-21 21:54:12 +08:00
|
|
|
}
|
2016-09-21 22:15:56 +08:00
|
|
|
|
|
|
|
// All tables are fixed, except for table of "datatables.js"
|
|
|
|
table {
|
2016-09-21 21:54:12 +08:00
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
|
2018-05-18 22:24:24 +08:00
|
|
|
.btn-toggle {
|
|
|
|
@include button-variant($btn-toggle-color, $btn-toggle-bg, $btn-toggle-border);
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
#alert-container {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#project-archive-btn {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#projects-toolbar {
|
2018-05-12 00:02:17 +08:00
|
|
|
margin-bottom: 15px;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#projects-toolbar .form-group {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-inline {
|
|
|
|
.form-group .dropdown {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-08 22:33:42 +08:00
|
|
|
#fluid-content:not(.no-second-nav-container) {
|
2016-02-12 23:52:43 +08:00
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
2018-05-08 22:33:42 +08:00
|
|
|
padding-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-pane {
|
|
|
|
background-color: $color-white;
|
|
|
|
margin: 20px 0;
|
2018-05-12 00:02:17 +08:00
|
|
|
padding: 25px 20px;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center-block-narrow {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
2016-10-05 19:21:34 +08:00
|
|
|
@media(max-width:450px) {
|
|
|
|
.dropdown-notifications {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-15 00:33:57 +08:00
|
|
|
.custom-dropdown-menu {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notifications-dropdown-header,
|
|
|
|
.dropdown-header {
|
|
|
|
background-color: $brand-primary;
|
|
|
|
color: $color-concrete;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 8px 20px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
.well-search-checklist {
|
|
|
|
background-color: $color-concrete !important;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blockquote-search {
|
2018-03-30 15:54:57 +08:00
|
|
|
font-size: $font-size-base;
|
2016-07-21 19:11:15 +08:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.vertical-spacer-one-half {
|
|
|
|
display: inline-block;
|
|
|
|
width: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Global invisible setter (hide element, but keep its size)
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Skin **/
|
|
|
|
|
|
|
|
body {
|
2018-03-30 15:54:57 +08:00
|
|
|
font-size: $font-size-small;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.jumbotron {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
font-size: 11px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-indicator,
|
|
|
|
.btn .badge-indicator {
|
2017-05-09 20:07:23 +08:00
|
|
|
font-size: 9px;
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-left: -8px;
|
2017-05-09 20:07:23 +08:00
|
|
|
padding: 3px 5px;
|
2016-02-12 23:52:43 +08:00
|
|
|
top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.handle-move {
|
|
|
|
cursor: move;
|
|
|
|
cursor: -webkit-grabbing;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this rule is strict because the order of css files is not correct */
|
|
|
|
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
mark,.mark {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-warning;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.label-default {
|
|
|
|
background-color: $color-alto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-primary {
|
2018-05-23 17:13:28 +08:00
|
|
|
background-color: $color-concrete;
|
|
|
|
color: $color-emperor;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.circle {
|
|
|
|
@extend .badge;
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
border-radius: 1em;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
background-color: $color-silver-chalice;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 19:57:12 +08:00
|
|
|
.align-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
a[data-toggle="tooltip"] {
|
|
|
|
color: inherit;
|
|
|
|
border-bottom: 1px dashed $color-emperor;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.nav-tabs {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
& > li.has-error {
|
|
|
|
& > a {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-danger;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
&:hover {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-danger;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 00:20:17 +08:00
|
|
|
.has-error {
|
2016-11-11 19:03:01 +08:00
|
|
|
.ql-container.ql-snow,
|
2016-11-11 00:20:17 +08:00
|
|
|
.ql-toolbar.ql-snow {
|
2018-03-28 19:54:01 +08:00
|
|
|
border: 1px solid $brand-danger;
|
2016-11-11 00:20:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.nav-tabs-less {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-pills {
|
|
|
|
& > li {
|
|
|
|
a {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.active):hover a {
|
|
|
|
background-color: $color-alto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active a {
|
|
|
|
color: $color-white;
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
background-color: transparent;
|
|
|
|
padding: 15px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs-less > li.active > a {
|
|
|
|
&,&:hover,&:focus {
|
2018-05-03 22:21:29 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
.tag.label.label-info {
|
|
|
|
font-size: 100%;
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-07-21 19:11:15 +08:00
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
#secondary-navigation {
|
|
|
|
white-space: nowrap;
|
2018-04-17 23:00:04 +08:00
|
|
|
overflow: hidden;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2016-11-18 19:43:57 +08:00
|
|
|
.panel-body {
|
|
|
|
.ql-editor {
|
2016-11-18 19:54:32 +08:00
|
|
|
padding: 0;
|
2016-11-18 19:43:57 +08:00
|
|
|
white-space: normal;
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.navbar-secondary {
|
|
|
|
background: $color-concrete !important;
|
|
|
|
margin-left: -280px;
|
2018-05-12 00:02:17 +08:00
|
|
|
padding-left: 294px;
|
|
|
|
padding-right: 97px;
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
border-color: transparent;
|
2018-05-12 00:02:17 +08:00
|
|
|
border-bottom: 0;
|
2016-02-12 23:52:43 +08:00
|
|
|
z-index: 500;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.container-fluid {
|
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
2018-05-12 00:02:17 +08:00
|
|
|
border-top: 0;
|
2018-04-17 23:00:04 +08:00
|
|
|
padding-left: 0;
|
2018-05-12 00:02:17 +08:00
|
|
|
padding-right: 0;
|
2018-04-17 23:00:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-toggle {
|
|
|
|
margin-right: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#secondary-menu {
|
2018-05-12 00:02:17 +08:00
|
|
|
background: $color-white;
|
|
|
|
border-bottom: 1px solid $color-gainsboro;
|
|
|
|
margin-top: 15px;
|
|
|
|
|
2018-05-14 18:08:45 +08:00
|
|
|
.open > a,
|
|
|
|
.open > a:hover,
|
|
|
|
.open > a:focus {
|
2018-05-12 00:02:17 +08:00
|
|
|
background-color: $color-white;
|
|
|
|
}
|
2018-04-17 23:00:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-name {
|
2018-05-08 22:33:42 +08:00
|
|
|
padding: 5px 0;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2018-05-12 00:02:17 +08:00
|
|
|
.navbar-nav > li > .dropdown-menu {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
ul.nav {
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
& > a {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $color-silver-chalice;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
2018-05-12 00:02:17 +08:00
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
&.active {
|
2018-03-28 19:54:01 +08:00
|
|
|
@include box-shadow(0 4px 0 $brand-primary);
|
2018-05-12 00:02:17 +08:00
|
|
|
margin-bottom: 4px;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2018-06-08 14:31:22 +08:00
|
|
|
& > a,
|
|
|
|
& > a:hover,
|
|
|
|
& > a:focus {
|
|
|
|
background: transparent;
|
2018-05-14 18:08:45 +08:00
|
|
|
color: $color-emperor;
|
2018-05-12 00:02:17 +08:00
|
|
|
font-weight: bold;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
2018-06-08 14:31:22 +08:00
|
|
|
|
|
|
|
ul .active-item {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 15:11:48 +08:00
|
|
|
.navbar-sign-in-halt {
|
|
|
|
.navbar-header {
|
|
|
|
float: left !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sign-in-halt-logout-button {
|
|
|
|
padding-top: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sign-in-halt-container {
|
|
|
|
margin: 0;
|
|
|
|
padding: 70px 10px 50px 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.navbar-secondary {
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-without-sidebar{
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-left: 0px;
|
|
|
|
-webkit-transition: all 0.5s ease;
|
|
|
|
-moz-transition: all 0.5s ease;
|
|
|
|
-o-transition: all 0.5s ease;
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Chat bubble */
|
|
|
|
.chat-bubble {
|
|
|
|
background-color: $color-white;
|
|
|
|
border-radius: 1em;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Settings */
|
|
|
|
.nav-settings {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-pane-settings {
|
|
|
|
background-color: $color-white;
|
|
|
|
padding: 15px;
|
|
|
|
border-left: 1px solid $color-alto;
|
|
|
|
border-right: 1px solid $color-alto;
|
|
|
|
border-bottom: 1px solid $color-alto;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
|
2017-01-25 19:12:27 +08:00
|
|
|
.breadcrumb-teams {
|
2016-02-12 23:52:43 +08:00
|
|
|
background-color: $color-concrete;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2016-10-04 21:52:48 +08:00
|
|
|
.notification-settings-labels {
|
2016-10-04 22:12:56 +08:00
|
|
|
line-height: 3em;
|
|
|
|
margin-top: 40px;
|
2016-10-04 21:52:48 +08:00
|
|
|
}
|
2016-10-04 22:12:56 +08:00
|
|
|
|
2016-09-23 18:52:38 +08:00
|
|
|
// Help link
|
2016-09-27 16:53:30 +08:00
|
|
|
#help-link {
|
|
|
|
padding: 13px;
|
2016-09-23 18:52:38 +08:00
|
|
|
|
2018-07-09 19:13:44 +08:00
|
|
|
.fas.fa-info-circle {
|
2018-03-30 15:54:57 +08:00
|
|
|
font-size: $font-size-large;
|
2016-09-27 16:53:30 +08:00
|
|
|
margin-top: 4px;
|
2016-09-23 18:52:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 23:56:39 +08:00
|
|
|
// Checkbox tree
|
|
|
|
.checkbox-tree ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.existing-users-smalltext {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-02-02 16:53:59 +08:00
|
|
|
// Teams datatable
|
|
|
|
.teams-datatable {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
.dataTables_paginate {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
/** Users datatable */
|
2017-01-25 19:12:27 +08:00
|
|
|
.panel-team-users .panel-body {
|
2016-02-12 23:52:43 +08:00
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.users-datatable {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
#users-table_filter {
|
|
|
|
float: right;
|
|
|
|
margin-top: 19px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#users-table_paginate {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2017-01-25 19:12:27 +08:00
|
|
|
.dropdown-teams-user {
|
|
|
|
.dropdown-menu li.user-team-role {
|
2016-02-12 23:52:43 +08:00
|
|
|
& > :first-child {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
2018-07-09 19:13:44 +08:00
|
|
|
&:not(.disabled) span.fas {
|
2016-02-12 23:52:43 +08:00
|
|
|
color: transparent !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-27 19:23:14 +08:00
|
|
|
.user-statistics {
|
2016-11-14 22:10:37 +08:00
|
|
|
.list-inline {
|
2016-11-14 22:04:18 +08:00
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
2016-10-27 19:23:14 +08:00
|
|
|
li {
|
|
|
|
height: 100px;
|
|
|
|
margin: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
/** Protocols management */
|
|
|
|
.tab-pane-protocols {
|
|
|
|
& > div.protocols-description {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .btn-group {
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width:768px) {
|
|
|
|
.tab-pane-protocols > .btn-group {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
@media(max-width:768px) {
|
|
|
|
.navbar-secondary ul.breadcrumb {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-07 21:57:59 +08:00
|
|
|
.protocols-datatable {
|
|
|
|
.dataTables_wrapper {
|
|
|
|
margin-top: 15px;
|
|
|
|
clear: both;
|
|
|
|
|
|
|
|
.dataTables_length {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTables_filter {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
tbody tr.selected {
|
|
|
|
& > td:nth-child(3), td:nth-child(4) {
|
2016-07-21 19:11:15 +08:00
|
|
|
color: $color-emperor;
|
2018-06-07 21:57:59 +08:00
|
|
|
& a {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
2016-07-21 19:11:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.well-protocols-results {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: $color-concrete !important;
|
|
|
|
|
|
|
|
& > ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
& > li {
|
|
|
|
margin: 2px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.linked-children-datatable {
|
|
|
|
clear: right;
|
|
|
|
|
|
|
|
table thead {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tbody tr .breadcrumb {
|
|
|
|
padding: 0 5px;
|
|
|
|
|
|
|
|
& li + li::before {
|
|
|
|
content: "> ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTables_paginate {
|
|
|
|
float: right;
|
2017-01-19 21:13:57 +08:00
|
|
|
|
|
|
|
.pagination {
|
|
|
|
margin: 2px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-19 22:58:40 +08:00
|
|
|
.dataTables_info {
|
2017-01-19 21:13:57 +08:00
|
|
|
padding-top: 8px;
|
2016-07-21 19:11:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.edit-name-link small {
|
|
|
|
margin-left: 5px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
a.edit-name-link:hover small {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
#edit-protocol-metadata-modal {
|
|
|
|
& div.bootstrap-tagsinput {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 64px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-26 15:52:07 +08:00
|
|
|
.bootstrap-tagsinput {
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
ul.no-style {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.double-line > li {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
border-color: $color-alto;
|
2018-05-08 22:33:42 +08:00
|
|
|
margin-top: 0;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > .active > a,
|
|
|
|
.pagination > .active > a:hover,
|
|
|
|
.pagination > .active > a:focus,
|
|
|
|
.pagination > .active > span,
|
|
|
|
.pagination > .active > span:hover,
|
|
|
|
.pagination > .active > span:focus {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination > li > a,
|
|
|
|
.pagination > li > span {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2018-05-12 00:02:17 +08:00
|
|
|
#projects-index,
|
|
|
|
#project-archive,
|
|
|
|
#project-show,
|
|
|
|
#experiment-archive,
|
|
|
|
#module-archive,
|
|
|
|
#result-archive {
|
|
|
|
.panel-default {
|
|
|
|
box-shadow: 0 3px 6px $color-alto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.module-large,
|
|
|
|
.module-medium,
|
|
|
|
.module-small {
|
|
|
|
box-shadow: 0 3px 6px $color-silver-chalice;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.panel-default > .panel-heading {
|
2018-05-15 00:33:57 +08:00
|
|
|
background-color: $color-gainsboro;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
&>.panel-title {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-project {
|
|
|
|
.panel-heading {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-archive {
|
|
|
|
.panel-heading {
|
2018-05-15 00:33:57 +08:00
|
|
|
background-color: darken($color-gainsboro, 5%);
|
2018-03-28 19:54:01 +08:00
|
|
|
color: lighten($color-emperor, 15%);
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-options {
|
|
|
|
position: relative;
|
|
|
|
bottom: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-footer {
|
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-footer-scinote {
|
|
|
|
background: linear-gradient(to bottom, $color-concrete, $color-white 10px);
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-link {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-link:hover {
|
|
|
|
color: darken($color-silver-chalice, 15%);
|
|
|
|
}
|
|
|
|
|
2016-09-21 21:54:12 +08:00
|
|
|
.tab-content {
|
|
|
|
ul {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-09-21 21:54:12 +08:00
|
|
|
li {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2016-09-21 21:54:12 +08:00
|
|
|
.manage-users-link {
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
2016-07-21 19:11:15 +08:00
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.content-module-info {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-comments {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-activities {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-users {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-notifications {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
li.notification.alert-red > .date-time {
|
|
|
|
font-weight: bold;
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-danger;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
li.notification.alert-yellow > .date-time {
|
|
|
|
font-weight: bold;
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-warning;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Accordion panel */
|
|
|
|
.panel-accordion {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
&> .panel-heading {
|
2018-05-15 00:33:57 +08:00
|
|
|
background-color: $color-gainsboro;
|
2016-02-12 23:52:43 +08:00
|
|
|
border-bottom: 1px solid $color-alto;
|
|
|
|
|
|
|
|
.panel-title > a {
|
|
|
|
&:hover, &:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > span {
|
|
|
|
@include rotate(90deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
& .panel-body {
|
|
|
|
background-color: $color-white;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control.bootstrap-select {
|
|
|
|
background-color: inherit;
|
|
|
|
@include box-shadow(inherit);
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading .dropdown {
|
|
|
|
bottom: 8px;
|
|
|
|
left: 8px;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:01:23 +08:00
|
|
|
#global-activity-page {
|
2018-05-08 22:33:42 +08:00
|
|
|
margin-top: 15px;
|
|
|
|
padding: 0;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2018-04-25 19:57:12 +08:00
|
|
|
.btn-more-activities {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
/** Activity list resembling Bootstrap wells */
|
|
|
|
ul.content-activities {
|
|
|
|
|
|
|
|
li.activity-item {
|
|
|
|
background-color: $color-white;
|
2018-06-07 15:29:47 +08:00
|
|
|
border-bottom: 1px solid $color-concrete;
|
|
|
|
padding: 8px 0;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
.activity-item-date {
|
2016-07-21 19:11:15 +08:00
|
|
|
min-width: 150px;
|
2016-02-12 23:52:43 +08:00
|
|
|
display: table-cell;
|
2018-06-07 15:29:47 +08:00
|
|
|
padding: 0 10px;
|
2016-02-12 23:52:43 +08:00
|
|
|
vertical-align: top;
|
2018-06-07 15:29:47 +08:00
|
|
|
text-align: center;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
.activity-item-text {
|
|
|
|
display: table-cell;
|
2018-06-07 15:29:47 +08:00
|
|
|
padding: 0 10px;
|
2016-02-12 23:52:43 +08:00
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.step {
|
|
|
|
.panel-heading a[data-toggle] {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.not-completed {
|
|
|
|
.badge-num > span.badge {
|
|
|
|
background-color: $color-silver;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.well {
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.well-sm {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
.panel-protocol-status {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
& > .panel-body {
|
|
|
|
padding: 5px 5px 5px 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.load-from-repository-protocols-datatable {
|
|
|
|
clear: right;
|
|
|
|
|
|
|
|
& .dataTables_wrapper .dataTables_filter {
|
|
|
|
float: right;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 00:43:55 +08:00
|
|
|
// Preview protocol modal
|
2016-12-22 18:43:11 +08:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
#protocol-preview-modal .modal-dialog {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 18:04:09 +08:00
|
|
|
|
2016-12-22 18:43:11 +08:00
|
|
|
#protocol-preview-modal .modal-dialog {
|
|
|
|
.modal-body {
|
|
|
|
max-height: 75vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
width: 100%;
|
2017-01-04 00:46:30 +08:00
|
|
|
|
2016-12-22 18:43:11 +08:00
|
|
|
.ql-editor {
|
|
|
|
min-height: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
/* Import protocol/s modal */
|
|
|
|
#import-protocol-modal .modal-dialog {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.import-protocols-modal-preview-container {
|
|
|
|
height: 300px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.eln-table {
|
|
|
|
text-align: center;
|
|
|
|
height: 21px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-preview {
|
2016-10-13 16:00:36 +08:00
|
|
|
background-color: $color-silver;
|
2016-07-21 19:11:15 +08:00
|
|
|
border-radius: 2em;
|
|
|
|
float: left;
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 5px 14px;
|
|
|
|
position: relative;
|
|
|
|
top: -10px;
|
|
|
|
}
|
2017-09-15 18:19:58 +08:00
|
|
|
|
|
|
|
}
|
2017-12-10 08:20:08 +08:00
|
|
|
// Protocolsio Import protocol modal
|
2016-07-21 19:11:15 +08:00
|
|
|
|
2017-09-15 18:19:58 +08:00
|
|
|
.import-protocols-modal-preview-container-json {
|
|
|
|
height: 300px;
|
2017-11-03 23:45:15 +08:00
|
|
|
overflow-y: scroll;
|
2017-09-15 18:19:58 +08:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.eln-table {
|
|
|
|
height: 21px;
|
2017-11-03 23:45:15 +08:00
|
|
|
text-align: center;
|
2017-09-15 18:19:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.badge-preview {
|
|
|
|
background-color: $color-silver;
|
|
|
|
border-radius: 2em;
|
|
|
|
float: left;
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 5px 14px;
|
|
|
|
position: relative;
|
|
|
|
top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-12-10 08:20:08 +08:00
|
|
|
// Protocolsio Preview protocol modal
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
#modal-import-json-protocol-preview .modal-dialog {
|
|
|
|
width: 70%;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-import-json-protocol-preview .modal-dialog {
|
|
|
|
.modal-body {
|
|
|
|
max-height: 75vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.ql-editor {
|
|
|
|
min-height: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
/* Steps and Results */
|
|
|
|
#steps {
|
|
|
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAAIUlEQVQImWNgoD5gZGBgMILSjKRo/P//vwiSGQwMDAwMAEnaA0jgHoquAAAAAElFTkSuQmCC");
|
|
|
|
background-repeat: repeat-y;
|
|
|
|
background-position: -3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-icon {
|
2018-05-08 22:33:42 +08:00
|
|
|
background-color: $color-silver;
|
|
|
|
color: $color-white;
|
2016-02-12 23:52:43 +08:00
|
|
|
float: left;
|
2018-05-08 22:33:42 +08:00
|
|
|
font-size: 1.4em;
|
2016-02-12 23:52:43 +08:00
|
|
|
padding: 6px 10px;
|
|
|
|
|
|
|
|
& + .well-sm {
|
|
|
|
margin-left: 38px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-02 22:34:09 +08:00
|
|
|
.new-asset-box {
|
|
|
|
border: 1px solid $color-silver;
|
|
|
|
border-radius: 2px;
|
2017-06-09 15:49:57 +08:00
|
|
|
font-size: 2rem;
|
2017-06-02 22:34:09 +08:00
|
|
|
margin-bottom: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
|
2017-10-19 17:38:23 +08:00
|
|
|
.dnd-error,
|
|
|
|
.dnd-total-error {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-danger;
|
2017-06-02 22:34:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.is-dragover {
|
2018-03-28 19:54:01 +08:00
|
|
|
background: $color-black;
|
2017-06-02 22:34:09 +08:00
|
|
|
bottom: 0;
|
|
|
|
display: none;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
min-height: 100%;
|
2018-03-28 19:54:01 +08:00
|
|
|
opacity: .4;
|
2017-06-02 22:34:09 +08:00
|
|
|
pointer-events: none;
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 999999;
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: $color-white;
|
|
|
|
display: block;
|
|
|
|
font-size: 4em;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-top: 25%;
|
|
|
|
pointer-events: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.step,
|
|
|
|
.result {
|
|
|
|
.panel {
|
|
|
|
margin-left: 38px;
|
|
|
|
}
|
|
|
|
|
2016-09-20 23:06:07 +08:00
|
|
|
.row {
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.badge-num {
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
& > .badge {
|
2018-05-18 22:24:24 +08:00
|
|
|
background: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
border-radius: 2em;
|
|
|
|
float: left;
|
|
|
|
font-size: 23.4px;
|
|
|
|
padding: 6px 11px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-digit-2 {
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.size-digit-3 {
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 10px 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .badge.icon {
|
2018-05-08 22:33:42 +08:00
|
|
|
background-color: $color-silver;
|
2016-02-12 23:52:43 +08:00
|
|
|
font-size: 16.5px;
|
|
|
|
padding: 9px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading a[data-toggle] {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-comments {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
2016-09-20 20:13:40 +08:00
|
|
|
padding: 0 15px;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
.hot-table {
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.step-result-hot-table {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Data table */
|
|
|
|
|
|
|
|
table.dataTable {
|
|
|
|
background-color: $color-alabaster;
|
2016-09-21 22:15:56 +08:00
|
|
|
table-layout: initial;
|
|
|
|
text-overflow: initial;
|
|
|
|
width: 100%;
|
|
|
|
word-break: initial;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
thead {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $color-silver-chalice;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
thead > tr > th {
|
|
|
|
border-bottom-width: 0;
|
|
|
|
border-left: 2px solid $color-alabaster;
|
|
|
|
color: $color-white;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
thead > tr > th:first-child {
|
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
thead > tr > th,
|
|
|
|
thead > tr > td {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody > tr.selected,
|
|
|
|
tbody > tr > .selected {
|
|
|
|
background-color: $color-alto !important;
|
|
|
|
color: $color-emperor !important;
|
2017-01-09 22:51:21 +08:00
|
|
|
|
|
|
|
a {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary !important;
|
2017-01-09 22:51:21 +08:00
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.sorting_desc,
|
|
|
|
.sorting_asc {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Helpers */
|
|
|
|
.line-wrap {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
&.short {
|
|
|
|
position: relative;
|
|
|
|
top: 6px;
|
|
|
|
max-width: 78%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#samples_length {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarButtons {
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pills with arrow */
|
|
|
|
|
|
|
|
.nav-stacked-arrow > li > a {
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
.nav-stacked-arrow > li.active > a:after,
|
|
|
|
.nav-stacked-arrow > li.active > a:hover:after,
|
|
|
|
.nav-stacked-arrow > li.active > a:focus:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 100%;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -19px;
|
|
|
|
border-top: 19px solid transparent;
|
2018-03-28 19:54:01 +08:00
|
|
|
border-left: 13px solid $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
border-bottom: 19px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-stacked-arrow > li.active > a:hover:after {
|
2018-03-28 19:54:01 +08:00
|
|
|
border-left: 13px solid darken($brand-primary, 15%);
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Overlay to disable interaction while loading ajax */
|
|
|
|
.loading-overlay {
|
2016-07-21 19:11:15 +08:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 1000000000;
|
|
|
|
cursor: wait;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-overlay-center {
|
|
|
|
position: fixed;
|
|
|
|
left:50%;
|
|
|
|
top:50%;
|
2016-09-27 15:12:31 +08:00
|
|
|
z-index: 1000000000;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2017-04-26 21:04:03 +08:00
|
|
|
.turbolinks-progress-bar::before {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Loading animation for ajax events, inspired by Codrops */
|
|
|
|
#loading-animation {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: -1;
|
|
|
|
width: 100%;
|
|
|
|
height: 3px;
|
2018-03-28 19:54:01 +08:00
|
|
|
background: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
-webkit-transform: translate3d(-100%, 0, 0);
|
|
|
|
transform: translate3d(-100%, 0, 0);
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading-animation.animate {
|
|
|
|
z-index: 10000000;
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transition: -webkit-transform 5s ease-in, opacity 1s 5s;
|
|
|
|
transition: transform 5s ease-in, opacity 1s 5s;
|
|
|
|
-webkit-transform: translate3d(0%, 0, 0);
|
|
|
|
transform: translate3d(0%, 0, 0);
|
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
.modal-tooltip {
|
2016-10-20 20:34:45 +08:00
|
|
|
border-bottom: 1px dotted $color-alto;
|
2016-07-21 19:11:15 +08:00
|
|
|
cursor: help;
|
|
|
|
display: inline-block;
|
2016-10-20 20:34:45 +08:00
|
|
|
|
|
|
|
.modal-tooltiptext {
|
|
|
|
background-color: $color-alto;
|
|
|
|
border-radius: 6px;
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $color-emperor;
|
2016-10-20 20:34:45 +08:00
|
|
|
display: block;
|
|
|
|
margin-left: 100px;
|
|
|
|
padding: 5px;
|
2016-10-20 21:35:09 +08:00
|
|
|
position: absolute;
|
2016-10-20 20:34:45 +08:00
|
|
|
text-align: center;
|
|
|
|
visibility: hidden;
|
|
|
|
width: 200px;
|
2016-12-14 20:36:10 +08:00
|
|
|
word-wrap: break-word;
|
2016-10-20 20:34:45 +08:00
|
|
|
z-index: $infinity;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
.modal-tooltip:hover .modal-tooltiptext {
|
|
|
|
visibility: visible;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
2016-07-21 19:11:15 +08:00
|
|
|
|
2017-06-15 21:06:02 +08:00
|
|
|
// don't display tooltip, it's handeled with js
|
|
|
|
.repository-table .modal-tooltip:hover .modal-tooltiptext {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2016-08-25 19:59:50 +08:00
|
|
|
// Comments
|
2016-08-24 21:45:49 +08:00
|
|
|
|
2016-09-20 23:06:07 +08:00
|
|
|
.comment-more {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
2016-09-21 14:16:23 +08:00
|
|
|
|
2016-08-24 21:45:49 +08:00
|
|
|
.dropdown.dropdown-comment {
|
|
|
|
display: inline-block;
|
|
|
|
|
2016-08-25 19:59:50 +08:00
|
|
|
[data-role="comment-options"] {
|
2016-08-24 21:45:49 +08:00
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-25 19:59:50 +08:00
|
|
|
.dropdown-menu.dropdown-menu-fixed {
|
2016-08-24 21:45:49 +08:00
|
|
|
left: auto;
|
2016-08-25 19:59:50 +08:00
|
|
|
position: fixed;
|
2016-08-24 21:45:49 +08:00
|
|
|
top: auto;
|
|
|
|
|
2016-08-25 19:59:50 +08:00
|
|
|
li:not(.dropdown-header):hover {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $color-concrete;
|
2016-08-24 21:45:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-25 19:59:50 +08:00
|
|
|
.edit-comment-form {
|
|
|
|
.help-block {
|
2016-08-24 23:38:31 +08:00
|
|
|
display: inline;
|
|
|
|
}
|
2016-08-26 22:32:49 +08:00
|
|
|
}
|
2016-10-26 19:41:17 +08:00
|
|
|
|
|
|
|
//edit avatar
|
2016-10-26 19:51:05 +08:00
|
|
|
.avatar-container {
|
2016-10-27 17:18:11 +08:00
|
|
|
background-color: lighten($color-concrete, 2%);
|
2016-10-26 19:41:17 +08:00
|
|
|
height: 100px;
|
|
|
|
position: relative;
|
2016-10-26 19:51:05 +08:00
|
|
|
width: 100px;
|
2016-10-26 19:41:17 +08:00
|
|
|
}
|
|
|
|
|
2016-10-27 17:18:11 +08:00
|
|
|
.avatar-container:hover .avatar-edit {
|
|
|
|
display: block;
|
2016-10-27 17:09:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-image {
|
2016-10-27 17:18:11 +08:00
|
|
|
left: 50%;
|
2016-10-26 19:41:17 +08:00
|
|
|
position: absolute;
|
2016-10-27 17:09:30 +08:00
|
|
|
top: 50%;
|
2016-10-27 17:18:11 +08:00
|
|
|
transform: translate(-50%, -50%);
|
2016-10-26 19:41:17 +08:00
|
|
|
}
|
|
|
|
|
2016-10-26 19:51:05 +08:00
|
|
|
.avatar-edit {
|
2016-10-27 17:09:30 +08:00
|
|
|
display: none;
|
|
|
|
margin-top: 70%;
|
2016-10-26 19:51:05 +08:00
|
|
|
opacity: .8;
|
2016-10-27 17:18:11 +08:00
|
|
|
position: absolute;
|
2016-10-26 19:51:05 +08:00
|
|
|
z-index: 10;
|
2016-10-26 19:41:17 +08:00
|
|
|
|
2018-03-29 19:58:14 +08:00
|
|
|
.btn-grey {
|
|
|
|
background-color: $color-silver-chalice;
|
|
|
|
border-color: $color-silver-chalice;
|
2016-10-26 19:51:05 +08:00
|
|
|
border-radius: 0;
|
2018-03-29 19:58:14 +08:00
|
|
|
color: $color-white;
|
2016-10-26 19:41:17 +08:00
|
|
|
width: 100px;
|
2018-03-29 19:58:14 +08:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: darken($color-silver-chalice, 15%);
|
|
|
|
border-color: darken($color-silver-chalice, 15%);
|
|
|
|
color: $color-white;
|
|
|
|
}
|
2016-10-26 19:41:17 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-03 18:27:17 +08:00
|
|
|
|
2017-02-21 21:02:42 +08:00
|
|
|
.avatar-file-upload input[type=file] {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:27:17 +08:00
|
|
|
.modal-invite-users {
|
|
|
|
.bootstrap-tagsinput {
|
|
|
|
min-width: 450px;
|
|
|
|
}
|
|
|
|
|
2016-11-06 18:29:00 +08:00
|
|
|
.results-container .alert {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.results-container .results-wrap {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
2017-01-25 19:12:27 +08:00
|
|
|
.team-selector .heading {
|
2016-11-03 18:27:17 +08:00
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-17 23:39:23 +08:00
|
|
|
|
2017-04-12 22:05:38 +08:00
|
|
|
// Image preview modal
|
2018-03-30 17:50:28 +08:00
|
|
|
.modal-file-preview {
|
2017-04-12 22:05:38 +08:00
|
|
|
background: transparent;
|
2018-03-30 15:54:57 +08:00
|
|
|
font-size: $font-size-large;
|
2017-04-12 22:05:38 +08:00
|
|
|
padding-right: 0 !important;
|
|
|
|
z-index: 1060;
|
|
|
|
|
|
|
|
.preview-close {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
color: $color-white;
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:50:28 +08:00
|
|
|
.file-wopi-controls {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
margin: 0 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 22:05:38 +08:00
|
|
|
.modal-dialog {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
color: $color-white;
|
|
|
|
height: 100%;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:50:28 +08:00
|
|
|
.file-preview-container {
|
|
|
|
align-items: center;
|
2018-04-04 21:29:20 +08:00
|
|
|
color: $gray-dark;
|
2018-03-30 17:50:28 +08:00
|
|
|
display: -moz-flex;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
width: 60%;
|
|
|
|
|
|
|
|
.file-name {
|
|
|
|
color: $color-black;
|
|
|
|
margin: 30px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 22:05:38 +08:00
|
|
|
img {
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
@media (max-height: 520px) {
|
|
|
|
height: 80%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
background: $color-black;
|
|
|
|
border: 0;
|
|
|
|
height: 60px;
|
2018-03-30 17:50:28 +08:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.file-name {
|
|
|
|
float: left;
|
|
|
|
}
|
2017-04-12 22:05:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
align-items: center;
|
|
|
|
display: -moz-flex;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
|
|
|
height: calc(100% - 120px);
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
2018-03-30 17:50:28 +08:00
|
|
|
padding: 0;
|
2017-04-12 22:05:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
background: $color-black;
|
|
|
|
border: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 60px;
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-03-30 17:50:28 +08:00
|
|
|
.file-download-link {
|
2017-04-12 22:05:38 +08:00
|
|
|
color: $color-white;
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 22:48:30 +08:00
|
|
|
// Disable textarea resizing throughout application
|
|
|
|
// (will be done via autosize JS plugin)
|
2016-11-08 18:46:30 +08:00
|
|
|
textarea {
|
2016-11-08 22:48:30 +08:00
|
|
|
resize: none;
|
2016-11-08 18:46:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea.textarea-sm {
|
|
|
|
height: 34px;
|
|
|
|
min-height: 34px;
|
|
|
|
|
|
|
|
&.form-control {
|
|
|
|
height: 34px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-11 16:47:37 +08:00
|
|
|
.comment-form .input-group {
|
|
|
|
height: 100%;
|
|
|
|
|
2016-11-08 18:29:55 +08:00
|
|
|
textarea {
|
2016-11-11 16:47:37 +08:00
|
|
|
-webkit-margin-before: 1px;
|
|
|
|
-webkit-margin-after: 1px;
|
2016-11-08 18:29:55 +08:00
|
|
|
}
|
|
|
|
|
2016-11-11 16:47:37 +08:00
|
|
|
.input-group-btn {
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.btn.btn-default {
|
|
|
|
height: 100%;
|
|
|
|
min-height: 34px;
|
|
|
|
-webkit-padding-before: 0;
|
|
|
|
-webkit-padding-after: 0;
|
|
|
|
}
|
2016-11-08 18:29:55 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-26 00:29:30 +08:00
|
|
|
|
|
|
|
// new smart dropdown styles
|
|
|
|
|
|
|
|
.smart-dropdown {
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 0;
|
|
|
|
width: 300px;
|
|
|
|
|
2016-12-14 20:36:10 +08:00
|
|
|
.modal-tooltiptext {
|
|
|
|
margin-left: 0;
|
|
|
|
z-index: 99999999;
|
|
|
|
}
|
|
|
|
|
2018-05-15 00:33:57 +08:00
|
|
|
li:not(.dropdown-header) {
|
2016-11-30 18:42:05 +08:00
|
|
|
background: $color-white;
|
2016-11-26 00:29:30 +08:00
|
|
|
border: 1px solid $color-alto;
|
|
|
|
padding: 10px 10px 10px 0;
|
2016-11-28 23:28:22 +08:00
|
|
|
vertical-align: middle;
|
2018-05-15 00:33:57 +08:00
|
|
|
}
|
2018-04-25 19:57:12 +08:00
|
|
|
|
2018-05-15 00:33:57 +08:00
|
|
|
li.dropdown-header {
|
|
|
|
padding-left: 30px;
|
2016-11-26 00:29:30 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 23:18:11 +08:00
|
|
|
[data-position] {
|
|
|
|
cursor: -webkit-grab;
|
|
|
|
cursor: grab;
|
|
|
|
}
|
|
|
|
|
2016-11-30 18:52:07 +08:00
|
|
|
.ui-sortable-helper {
|
2016-11-30 18:42:05 +08:00
|
|
|
cursor: -webkit-grabbing;
|
|
|
|
cursor: grabbing;
|
|
|
|
}
|
|
|
|
|
2016-11-29 19:59:56 +08:00
|
|
|
.form-group {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2016-11-26 00:29:30 +08:00
|
|
|
.grippy {
|
|
|
|
background-repeat: none;
|
|
|
|
display: inline-block;
|
|
|
|
height: 19px;
|
|
|
|
margin-top: 5px;
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
2016-11-29 21:01:15 +08:00
|
|
|
li:not(.editing) .grippy-img {
|
2016-11-26 00:29:30 +08:00
|
|
|
background: url(asset-path('custom/grippy.png'));
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-top: 5px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2016-11-29 21:01:15 +08:00
|
|
|
.text-edit {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-top: -2.5px;
|
|
|
|
position: absolute;
|
|
|
|
width: 180px;
|
|
|
|
}
|
|
|
|
|
2016-11-26 00:29:30 +08:00
|
|
|
.col-invisible {
|
|
|
|
color: $color-alto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 5px;
|
2016-11-29 18:43:18 +08:00
|
|
|
|
|
|
|
span {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
}
|
2016-11-29 21:01:15 +08:00
|
|
|
|
|
|
|
.ok {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-default;
|
2016-11-29 21:01:15 +08:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cancel {
|
2016-12-14 00:08:19 +08:00
|
|
|
margin-left: 5px;
|
2016-12-15 16:54:38 +08:00
|
|
|
margin-right: 15px;
|
2016-11-29 21:01:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.vis {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.del {
|
|
|
|
}
|
2016-11-26 00:29:30 +08:00
|
|
|
}
|
2016-12-14 00:08:19 +08:00
|
|
|
|
|
|
|
.help-block {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-new-column-form .help-block {
|
|
|
|
margin-left: 0;
|
2016-11-26 00:29:30 +08:00
|
|
|
}
|
2016-12-14 20:36:10 +08:00
|
|
|
|
|
|
|
th.custom-field .modal-tooltiptext {
|
|
|
|
margin-left: 0;
|
|
|
|
z-index: 99999999;
|
|
|
|
}
|
2016-12-16 16:50:45 +08:00
|
|
|
|
|
|
|
.disable-click {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2017-01-04 17:54:02 +08:00
|
|
|
|
|
|
|
// AtWho (smart annotations)
|
|
|
|
|
2017-01-05 17:52:28 +08:00
|
|
|
// <Custom atwho style>
|
|
|
|
.atwho-view {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: none;
|
|
|
|
margin-top: 18px;
|
|
|
|
background: $color-white;
|
|
|
|
color: $color-black;
|
2017-01-05 21:06:48 +08:00
|
|
|
border: 1px solid $color-emperor;
|
2017-01-05 17:52:28 +08:00
|
|
|
border-radius: 3px;
|
2018-03-28 19:54:01 +08:00
|
|
|
box-shadow: 0 0 5px $color-gainsboro;
|
2018-04-03 02:38:56 +08:00
|
|
|
max-width: 800px;
|
|
|
|
min-width: 700px;
|
2017-01-05 17:52:28 +08:00
|
|
|
overflow: auto;
|
|
|
|
z-index: 11110 !important;
|
|
|
|
|
|
|
|
small {
|
|
|
|
font-size: smaller;
|
|
|
|
color: $color-emperor;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2017-01-04 17:54:02 +08:00
|
|
|
}
|
|
|
|
|
2017-01-05 17:52:28 +08:00
|
|
|
.cur {
|
2018-03-28 19:54:01 +08:00
|
|
|
background: $brand-primary;
|
2017-01-05 17:52:28 +08:00
|
|
|
color: $color-white;
|
|
|
|
|
|
|
|
small {
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
color: $color-white;
|
|
|
|
font: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
padding: 5px 10px;
|
2017-01-05 21:06:48 +08:00
|
|
|
border-bottom: 1px solid $color-emperor;
|
2017-01-05 17:52:28 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// <End of overrides>
|
|
|
|
|
2017-01-11 00:05:32 +08:00
|
|
|
.atwho-header-res {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $color-concrete;
|
2017-01-05 21:06:48 +08:00
|
|
|
border-bottom: 1px solid $color-emperor;
|
2018-04-03 02:38:56 +08:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 3px 5px;
|
2017-01-05 21:06:48 +08:00
|
|
|
|
2018-04-03 02:38:56 +08:00
|
|
|
.btn {
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 5px;
|
|
|
|
padding: 3px;
|
2017-01-05 21:06:48 +08:00
|
|
|
}
|
|
|
|
|
2018-04-03 02:38:56 +08:00
|
|
|
.btn-default {
|
|
|
|
background-color: transparent;
|
2017-01-05 21:06:48 +08:00
|
|
|
}
|
|
|
|
|
2017-01-11 17:34:14 +08:00
|
|
|
.title-user {
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
2017-01-05 21:06:48 +08:00
|
|
|
.help {
|
2018-04-03 02:38:56 +08:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 15px;
|
|
|
|
order: 99;
|
|
|
|
padding: 4px;
|
|
|
|
white-space: nowrap;
|
2017-01-05 21:06:48 +08:00
|
|
|
|
|
|
|
div {
|
|
|
|
display: inline;
|
|
|
|
font-size: smaller;
|
2018-04-03 02:38:56 +08:00
|
|
|
margin-left: 15px;
|
2017-01-07 16:59:52 +08:00
|
|
|
}
|
2017-01-05 21:06:48 +08:00
|
|
|
|
2018-04-03 02:38:56 +08:00
|
|
|
strong {
|
2017-01-07 16:59:52 +08:00
|
|
|
color: $color-black;
|
|
|
|
}
|
2018-04-03 02:38:56 +08:00
|
|
|
}
|
2017-01-07 16:59:52 +08:00
|
|
|
|
2018-04-03 02:38:56 +08:00
|
|
|
.dismiss {
|
|
|
|
color: $color-emperor;
|
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
2017-01-07 16:59:52 +08:00
|
|
|
|
2018-04-03 02:38:56 +08:00
|
|
|
.dismiss:hover {
|
|
|
|
color: $color-black;
|
|
|
|
cursor: pointer;
|
2017-01-05 21:06:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-05 17:52:28 +08:00
|
|
|
.atwho-li-user {
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 10px;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
2017-01-04 17:54:02 +08:00
|
|
|
}
|
2017-01-11 00:05:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.atwho-li-res {
|
|
|
|
|
2018-07-09 19:13:44 +08:00
|
|
|
.fa-tint {
|
2017-01-11 00:05:32 +08:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.res-type {
|
|
|
|
border: 1px solid $color-black;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
padding: 0 2px;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.res-name {
|
|
|
|
font-weight: 600;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.res-description {
|
|
|
|
color: $color-emperor;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
}
|
2017-01-11 17:34:14 +08:00
|
|
|
|
|
|
|
.sa-type {
|
2018-05-17 17:01:15 +08:00
|
|
|
border: 1px solid $color-emperor;
|
2017-01-11 17:34:14 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
font-weight: 600;
|
|
|
|
padding: 0 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2017-01-13 18:34:10 +08:00
|
|
|
|
|
|
|
.atwho-user-popover {
|
|
|
|
cursor: pointer;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2017-01-18 15:34:29 +08:00
|
|
|
.atwho-user-img-popover {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2017-01-19 00:49:36 +08:00
|
|
|
.atwho-no-results {
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
|
|
|
|
2017-01-13 18:34:10 +08:00
|
|
|
.popover {
|
|
|
|
border-radius: 3px;
|
|
|
|
min-width: 450px;
|
|
|
|
padding: 15px 10px;
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-weight: bold;
|
2017-01-24 17:51:12 +08:00
|
|
|
line-height: 0;
|
2017-01-13 18:34:10 +08:00
|
|
|
}
|
|
|
|
|
2017-01-24 17:51:12 +08:00
|
|
|
.silver {
|
2017-01-13 18:34:10 +08:00
|
|
|
color: $color-silver-chalice;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
max-width: 260px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
2017-01-23 16:47:04 +08:00
|
|
|
|
|
|
|
.popover-remove {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-03-03 23:36:52 +08:00
|
|
|
|
|
|
|
.my_module-state-buttons {
|
|
|
|
padding-top: 6px;
|
2017-03-24 19:10:07 +08:00
|
|
|
}
|
2017-06-22 20:43:01 +08:00
|
|
|
|
|
|
|
.parse-records-table {
|
|
|
|
max-height: 200px;
|
|
|
|
}
|
2018-04-25 16:43:16 +08:00
|
|
|
|
2018-04-24 19:11:55 +08:00
|
|
|
a.disabled {
|
2018-05-16 16:43:25 +08:00
|
|
|
opacity: .5;
|
2018-04-24 19:11:55 +08:00
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2018-04-26 23:04:36 +08:00
|
|
|
|
2018-05-10 15:47:10 +08:00
|
|
|
a.disabled-with-click-events {
|
2018-05-16 16:43:25 +08:00
|
|
|
opacity: .5;
|
2018-05-16 18:02:46 +08:00
|
|
|
cursor: not-allowed;
|
2018-05-10 15:47:10 +08:00
|
|
|
}
|
|
|
|
|
2018-04-25 16:43:16 +08:00
|
|
|
#alert-flash {
|
2018-05-03 20:51:49 +08:00
|
|
|
|
2018-04-25 16:43:16 +08:00
|
|
|
button {
|
|
|
|
margin-right: 400px;
|
|
|
|
}
|
|
|
|
|
2018-07-09 19:13:44 +08:00
|
|
|
.fas {
|
2018-04-25 16:43:16 +08:00
|
|
|
margin-left: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width:768px) {
|
2018-05-03 20:51:49 +08:00
|
|
|
|
2018-04-25 16:43:16 +08:00
|
|
|
button {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-05-03 20:51:49 +08:00
|
|
|
|
2018-07-09 19:13:44 +08:00
|
|
|
.fas {
|
2018-05-03 20:49:06 +08:00
|
|
|
margin-left: 10px;
|
2018-04-25 16:43:16 +08:00
|
|
|
}
|
|
|
|
}
|
2018-05-03 20:49:06 +08:00
|
|
|
}
|
|
|
|
|
2018-03-18 19:15:21 +08:00
|
|
|
.linkedin-signin-button {
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
2018-04-05 19:15:32 +08:00
|
|
|
|
|
|
|
.tiny-mce-pdf-ready {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|