trabajo-afectivo/app/assets/stylesheets/zammad.css.scss

5568 lines
90 KiB
SCSS
Raw Normal View History

2015-05-08 09:58:00 +00:00
$supergood-color: hsl(145,51%,45%);
$good-color: hsl(62,45%,46%);
$ok-color: hsl(41,100%,49%);
$bad-color: hsl(30,93%,50%);
$superbad-color: hsl(19,90%,51%);
$minWidth: 1024px;
$sidebarWidth: 280px;
$navigationWidth: 260px;
2015-03-25 17:00:00 +00:00
html {
height: 100%;
}
body {
2014-07-15 08:21:01 +00:00
font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
2014-07-23 22:13:40 +00:00
line-height: 1.45;
2014-07-18 16:18:13 +00:00
font-weight: normal;
background: hsl(210,17%,98%);
2015-03-25 17:00:00 +00:00
height: 100%;
2015-05-27 12:21:56 +00:00
color: hsl(198,19%,72%);
2015-06-10 10:58:21 +00:00
word-wrap: break-word;
overflow-wrap: break-word;
display: flex;
2015-06-09 08:47:20 +00:00
flex-direction: column;
}
2014-09-30 11:15:40 +00:00
p {
2014-10-29 19:43:56 +00:00
margin: 14px 0;
2015-06-08 13:21:47 +00:00
color: hsl(60,1%,34%);
&.subtle {
color: hsl(60,1%,74%);
}
2014-09-30 11:15:40 +00:00
}
2014-11-07 13:37:02 +00:00
.u-highlight {
2015-01-12 13:32:24 +00:00
color: #0F94D6;
2014-11-07 13:37:02 +00:00
}
2015-06-09 08:47:20 +00:00
.u-dontfold {
flex-shrink: 0;
}
2014-10-07 15:28:24 +00:00
a {
outline: none !important;
2014-11-07 13:37:02 +00:00
@extend .u-highlight;
2014-10-07 15:28:24 +00:00
}
a.create {
color: hsl(145,51%,45%);
text-decoration: underline;
}
2014-08-25 16:32:39 +00:00
small {
color: #c6c6c5;
font-size: 12px;
}
blockquote {
font-size: inherit;
}
2015-01-05 00:12:52 +00:00
#app {
display: flex;
flex: 1;
min-width: $minWidth;
2015-06-10 09:41:36 +00:00
overflow: auto;
}
.u-unclickable {
pointer-events: none;
}
.u-clickable {
cursor: pointer;
user-select: none;
}
.u-textTruncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.u-positionOrigin {
position: relative;
}
.zIndex-1,
.zIndex-2,
.zIndex-3,
.zIndex-4,
.zIndex-5,
.zIndex-6,
.zIndex-7,
.zIndex-8,
.zIndex-9,
.zIndex-10 {
position: relative;
}
.zIndex-1 {
z-index: 100;
}
.zIndex-2 {
z-index: 200;
}
.zIndex-3 {
z-index: 300;
}
.zIndex-4 {
z-index: 400;
}
.zIndex-5 {
z-index: 500;
}
.zIndex-6 {
z-index: 600;
}
.zIndex-7 {
z-index: 700;
}
.zIndex-8 {
z-index: 800;
}
.zIndex-9 {
z-index: 900;
}
.zIndex-10 {
z-index: 1000;
}
.clickCatcher {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
cursor: default;
}
2014-09-04 00:54:33 +00:00
.debug .clickCatcher {
background: hsla(0,100%,50%,.13);
}
2014-09-04 00:54:33 +00:00
.debug .clickCatcher + .clickCatcher {
background: hsla(50,100%,50%,.13);
}
2014-11-14 10:15:00 +00:00
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */
[contenteditable] {
display: block;
outline-style: none;
border-radius: 3px;
/* needed to make empty tags editable, otherwise no focus can be set */
min-height: 10px;
min-width: 20px;
}
[contenteditable]:hover,
[contenteditable]:focus {
background: #f8f9fa;
}
2014-10-01 11:57:36 +00:00
[contenteditable]:focus {
text-overflow: clip !important;
}
[contenteditable].invalid {
background: #F92;
}
[contenteditable] > .placeholder {
color: #999;
}
2014-12-28 18:35:20 +00:00
[contenteditable] p {
margin: 0;
}
/* fix for placeholder */
.Medium-placeholder {
position: relative;
}
2014-09-15 21:58:54 +00:00
.close,
.close:hover {
float: none;
opacity: 1;
}
#app > nav {
position: relative;
z-index: 1;
}
2014-08-28 07:25:04 +00:00
/* tooltip */
a[data-tooltip],
time[data-tooltip],
span[data-tooltip] {
position: relative;
}
a[data-tooltip]:before,
time[data-tooltip]:before,
span[data-tooltip]:before,
a[data-tooltip]:after,
time[data-tooltip]:after,
span[data-tooltip]:after {
content: "";
2014-08-28 07:25:04 +00:00
position: absolute;
transform: scale(0);
opacity: 0;
transition: transform 300ms cubic-bezier(0.34,1.6,0.71,1), opacity 300ms;
}
a[data-tooltip]:before,
time[data-tooltip]:before,
span[data-tooltip]:before {
2014-08-28 07:25:04 +00:00
left: 0;
top: -34px;
background-color: #c6c6c5;
color: #ffffff;
height: 26px;
line-height: 27px;
border-radius: 5px;
padding: 0 13px;
content: attr(data-tooltip);
white-space: nowrap;
transform-origin: 17px 26px;
2014-08-28 07:25:04 +00:00
}
a[data-tooltip]:after,
time[data-tooltip]:after,
span[data-tooltip]:after {
left: 13px;
top: -8px;
border-top: 7px solid #c6c6c5;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
transform-origin: 4px 0;
2014-08-28 07:25:04 +00:00
}
a[data-tooltip]:hover:after,
a[data-tooltip]:hover:before,
time[data-tooltip]:hover:after,
time[data-tooltip]:hover:before,
span[data-tooltip]:hover:after,
span[data-tooltip]:hover:before {
transform: scale(1);
opacity: 1;
transition: transform 300ms 1.5s cubic-bezier(0.34,1.6,0.71,1), opacity 300ms 1.5s;
2014-08-28 07:25:04 +00:00
}
2015-06-09 17:51:43 +00:00
.textarea::placeholder,
.form-control::placeholder,
.token-input::placeholder {
color: hsl(0,0%,80%);
}
2014-09-04 21:56:58 +00:00
2014-11-14 10:15:00 +00:00
.btn,
.btn:hover,
.btn:focus {
font-size: 14px;
padding: 10px 24px 9px;
color: hsl(202,68%,54%);
background: white;
border-color: rgba(0,0,0,.1);
2015-01-14 22:45:08 +00:00
outline: none !important;
2014-11-14 10:15:00 +00:00
2015-03-10 20:11:36 +00:00
&.btn--slim {
padding-left: 12px;
padding-right: 12px;
}
2015-06-09 14:48:58 +00:00
&.btn--table {
padding: 4px 9px;
font-weight: 300;
border: none;
2015-06-09 15:47:44 +00:00
margin: 5px 6px 0;
2015-06-09 14:48:58 +00:00
.icon {
vertical-align: middle;
margin-right: 5px;
}
}
2015-03-10 20:11:36 +00:00
2014-11-14 10:15:00 +00:00
&.is-disabled {
pointer-events: none;
cursor: not-allowed;
opacity: .33;
}
&:active {
box-shadow: none;
2015-01-14 22:45:08 +00:00
background: hsl(0,0%,98%);
2014-11-14 10:15:00 +00:00
}
2015-01-14 21:00:37 +00:00
&.btn--action {
2015-03-10 20:11:36 +00:00
text-transform: uppercase;
color: hsl(0,0%,60%);
font-size: 12px;
letter-spacing: 0.1em;
2015-01-21 15:54:09 +00:00
height: 31px;
padding: 6px 11px !important;
display: inline-flex;
align-items: center;
2015-03-10 20:11:36 +00:00
&.btn--slim {
padding-left: 7px !important;
padding-right: 7px !important;
}
2015-01-14 21:00:37 +00:00
}
2015-05-28 11:33:54 +00:00
// used in .recipientList-controls
&.btn--onDark {
background: none;
2015-05-28 11:33:54 +00:00
color: white;
2015-05-28 11:33:54 +00:00
svg {
fill: currentColor;
opacity: 1;
}
}
2014-11-14 10:15:00 +00:00
&.btn--primary {
color: white;
2015-01-14 22:45:08 +00:00
background: hsl(203,65%,55%);
&:active {
background: hsl(203,65%,45%);
}
2014-11-14 10:15:00 +00:00
}
&.btn--success {
color: white;
background: hsl(145,51%,45%);
2015-01-14 22:45:08 +00:00
&:active {
background: hsl(145,51%,35%);
}
2014-11-14 10:15:00 +00:00
}
&.btn--danger {
color: white;
background: hsl(0,65%,55%);
2015-01-14 22:45:08 +00:00
&:active {
background: hsl(0,65%,45%);
}
2014-11-14 10:15:00 +00:00
}
&.btn--text {
2015-06-16 11:17:55 +00:00
font-size: inherit;
padding: 0;
color: hsl(203,65%,55%);
border: none;
background: none;
2015-06-16 11:17:55 +00:00
vertical-align: baseline;
&:active {
color: hsl(203,65%,45%);
}
}
2014-11-14 10:15:00 +00:00
&.btn--subtle {
padding-left: 0;
padding-right: 0;
border: none;
color: rgba(0,0,0,.32);
text-decoration: underline;
background: none;
@extend .u-clickable;
2015-01-14 22:45:08 +00:00
&:active {
color: rgba(0,0,0,.42);
}
2014-11-14 10:15:00 +00:00
&:hover {
color: rgba(0,0,0,.5);
}
+ .btn:not(.align-right) {
margin-left: 20px;
}
}
2015-03-10 20:11:36 +00:00
&.btn--split--first {
border-radius: 3px 0 0 3px;
}
&.btn--split,
&.btn--split--last {
border-radius: 0;
border-left: none;
margin-left: 0;
}
&.btn--split--last {
border-radius: 0 3px 3px 0;
}
2014-11-14 10:15:00 +00:00
}
.btn + .btn {
margin-left: 10px;
}
.btn + .btn.align-right {
margin-left: auto;
}
.subtle-link.align-right ~ .btn,
.btn.align-right ~ .btn {
margin-left: 15px;
}
2014-11-14 10:15:00 +00:00
.vertical > .btn + .btn {
margin-left: 0;
margin-top: 10px;
}
.btn--download .icon-download {
2014-11-14 10:15:00 +00:00
margin-right: 6px;
margin-top: 4px;
2014-11-14 10:15:00 +00:00
margin-left: -10px;
vertical-align: top;
fill: white;
2014-11-14 10:15:00 +00:00
}
.btn-label {
2015-05-28 11:33:54 +00:00
margin-left: 7px;
}
2015-03-10 20:11:36 +00:00
.visibility-change {
/*
Interactive Visibility Change Classes:
<div class="visibility-change">
2015-06-02 16:21:14 +00:00
<svg class="icon-marker" data-visible="active"><use xlink:href="#icon-marker" /></svg>
2015-03-10 20:11:36 +00:00
</div>
Important: HTML Order active > hover > normal
*/
[data-visible=active],
[data-visible=hover] {
display: none;
}
2015-06-02 16:21:14 +00:00
&.is-active [data-visible=active] {
2015-03-10 20:11:36 +00:00
display: block;
& ~ [data-visible=normal] {
display: none
}
}
&:hover [data-visible=hover] {
display: block;
& ~ [data-visible=normal] {
display: none
}
}
}
2012-10-14 23:00:34 +00:00
table {
2015-06-09 19:20:55 +00:00
table-layout: fixed;
2012-10-14 23:00:34 +00:00
}
2014-07-23 19:47:57 +00:00
2013-07-30 13:58:33 +00:00
.table {
display: table;
}
2014-07-23 19:47:57 +00:00
2013-07-30 13:58:33 +00:00
.table .table-row {
display: table-row;
}
2014-07-23 19:47:57 +00:00
.table th:not(.noTruncate),
.table td:not(.noTruncate) {
@extend .u-textTruncate;
2014-07-23 19:47:57 +00:00
}
.table > thead > tr > th {
2014-07-23 20:56:59 +00:00
padding: 12px 9px 10px;
2014-07-23 19:47:57 +00:00
border-bottom: none;
border-top: 1px solid #ececec;
background: #f0f1f2;
color: #444a4f;
font-weight: normal;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
2014-07-23 19:47:57 +00:00
}
2014-07-23 20:56:59 +00:00
.table > tbody > tr > td {
2015-06-09 14:48:58 +00:00
padding: 9px;
2014-07-23 20:56:59 +00:00
border: none;
2015-06-09 09:17:54 +00:00
box-shadow: 0 1px rgba(0,0,0,.02);
2014-07-23 20:56:59 +00:00
}
2015-06-09 09:17:54 +00:00
.table-hover > tbody > tr:hover > td {
background: white;
box-shadow:
0 1px rgba(0,0,0,.02),
0 -1px rgba(0,0,0,.02);
2014-07-23 20:56:59 +00:00
}
2015-06-09 09:17:54 +00:00
2014-07-23 20:56:59 +00:00
.table-hover > tbody > tr:hover > th {
background: rgba(0,8,14,.015);
}
.table > thead:first-child > tr:first-child > th.no-padding,
.table > thead > tr > th.no-padding,
.table > tbody > tr > td.no-padding {
padding: 0;
}
2015-05-27 12:21:56 +00:00
.table tr.is-inactive {
opacity: 0.5;
text-decoration: line-through;
a {
color: #bbb;
}
}
2015-05-26 18:03:52 +00:00
.table .icon-trash {
vertical-align: middle;
fill: hsl(240,1%,77%);
}
2015-05-27 14:55:08 +00:00
.table .icon-priority {
vertical-align: middle;
margin-top: -3px;
}
2015-03-13 13:34:35 +00:00
.input-replacement {
2014-07-23 20:56:59 +00:00
padding: 0;
margin: 0;
height: 38px;
@extend .u-clickable;
display: flex;
align-items: center;
justify-content: center;
2014-07-23 20:56:59 +00:00
}
2015-05-26 07:41:20 +00:00
.input-replacement input,
.input-replacement input:not(:checked) ~ .icon-checked,
.input-replacement input:checked ~ .icon-unchecked {
2014-07-23 20:56:59 +00:00
display: none;
}
.table .priority.icon:after {
background: #f8f9fa;
2014-07-23 19:47:57 +00:00
}
.table .table-cell {
2013-07-30 13:58:33 +00:00
vertical-align: top;
display: table-cell;
border-bottom: 1px solid #eeeeee;
}
2014-07-23 19:47:57 +00:00
2013-08-05 00:03:27 +00:00
.hero-two {
width: 100%;
}
.hero-two .hero-left {
width: 50%;
float: left;
}
.hero-two .hero-right {
width: 50%;
float: right;
}
2014-03-20 08:51:02 +00:00
.panel-title {
font-size: 14px;
}
2013-07-30 13:58:33 +00:00
#task {
2013-04-18 12:41:58 +00:00
position: fixed;
display: table;
2013-04-18 12:41:58 +00:00
width: 100%;
2013-09-22 17:40:58 +00:00
min-width: 1000px;
2013-08-19 20:46:19 +00:00
top: 46px;
2014-07-07 17:18:51 +00:00
display: none;
2013-07-30 13:58:33 +00:00
}
#task > .taskbar {
display: table-row;
z-index: 1040;
2013-04-18 12:41:58 +00:00
}
#task > .taskbar > div {
2013-08-19 20:46:19 +00:00
padding: 0 4px 4px 4px;
display: table-cell;
}
#task .task {
@extend .u-textTruncate;
max-width: 120px;
2013-08-20 11:28:32 +00:00
display: inline-block;
}
#task .task > a,
#task .task > a:hover {
2013-04-18 12:41:58 +00:00
color: #ffffff;
text-decoration: none;
}
#task .btn-default .task > a,
#task .btn-default .task > a:hover {
color: #333333;
}
2013-07-30 13:58:33 +00:00
#task .taskbar .btn-small {
2013-09-17 08:48:49 +00:00
padding: 3px 8px 4px;
margin-top: 2px;
2013-07-30 13:58:33 +00:00
font-size: 11px;
font-weight: 300;
}
#task .taskbar .btn-default {
background-color: #c3c3c3;
border-color: #c3c3c3;
}
#task [data-type="close"] {
margin-left: 5px;
2013-08-19 20:46:19 +00:00
font-size: 13px;
top: 1px;
}
#task .taskbar-items {
}
#task .taskbar-new {
text-align: right;
padding-right: 12px;
}
2012-10-22 20:30:31 +00:00
.max-size-scroll {
max-height: 240px;
overflow-y: scroll;
}
2012-04-10 14:06:46 +00:00
/*
#content > *:not(.active) {
display: none !important;
}
*/
2012-08-24 18:54:57 +00:00
h1, h2, h3, h4, h5, h6 {
2014-07-02 15:15:50 +00:00
font-weight: normal;
2015-05-28 11:33:54 +00:00
color: hsl(202,8%,28%);
2012-08-24 18:54:57 +00:00
}
h1 {
2014-07-02 15:15:50 +00:00
font-size: 23px;
line-height: 29px;
}
2014-07-15 08:30:50 +00:00
h2,
h2.popover-title {
2014-08-05 13:05:11 +00:00
font-size: 19px;
2014-07-04 10:29:52 +00:00
line-height: 25px;
}
2014-07-15 08:30:50 +00:00
h3 {
2014-07-15 08:30:50 +00:00
font-size: 13px;
margin: 14px 0 6px;
color: #a9bcc4;
font-weight: 200;
text-transform: uppercase;
letter-spacing: 0.07em;
2015-06-16 11:17:55 +00:00
.subtitle {
font-size: 12px;
text-transform: none;
color: hsl(0,0%,60%);
letter-spacing: initial;
}
2013-07-30 13:58:33 +00:00
}
2014-07-15 08:30:50 +00:00
2013-07-30 13:58:33 +00:00
h4 {
font-size: 20px;
}
2014-07-15 08:30:50 +00:00
2013-08-04 22:03:13 +00:00
h5 {
font-size: 16px;
2012-11-03 08:52:22 +00:00
}
2013-07-30 13:58:33 +00:00
label,
2015-01-27 15:33:22 +00:00
.checkbox.form-group label {
2014-07-02 15:15:50 +00:00
text-transform: uppercase;
color: hsl(198,19%,72%);
display: block;
2014-07-02 15:15:50 +00:00
font-size: 12px;
font-weight: normal;
letter-spacing: 0.1em;
margin-bottom: 4px;
2015-01-20 01:44:33 +00:00
text-align: left;
padding: 0;
2014-08-30 10:24:31 +00:00
}
2015-06-16 11:17:55 +00:00
/* circumventing the label:not(.inline-label) selector because it's too strong */
.inline-label {
font-size: inherit;
font-weight: inherit;
text-align: inherit;
color: inherit;
letter-spacing: 0;
margin: 0;
text-transform: none;
display: inline;
}
fieldset {
margin: 0 -4px;
2014-11-14 10:15:00 +00:00
@extend .clearfix;
}
fieldset .form-group {
padding: 0 4px;
2015-01-27 15:33:22 +00:00
2014-11-14 10:15:00 +00:00
&:last-child {
margin-bottom: 0;
}
}
fieldset > *:not(.form-group) .form-control {
margin-left: 4px;
margin-right: 4px;
}
.form-group {
margin-bottom: 16px;
}
2014-08-30 10:24:31 +00:00
.form-group + .form-group {
margin-top: 0;
2014-07-02 15:15:50 +00:00
}
.formGroup-label {
padding: 0 2px;
2015-05-28 14:21:31 +00:00
margin-bottom: 6px;
position: relative;
display: flex;
align-items: center;
label {
margin: 0;
}
.bookmark.icon {
margin-bottom: -1px;
}
}
.formGroup-bookmark {
@extend .u-clickable;
display: flex;
align-items: center;
flex-direction: row-reverse;
width: 30px;
height: 30px;
position: absolute;
right: 0;
top: -10px;
}
.form-group .controls .richtext {
position: relative;
2014-10-07 06:05:10 +00:00
height: auto;
}
2013-08-04 22:03:13 +00:00
.form-group .help-message {
2014-09-25 17:00:10 +00:00
cursor: help;
opacity: 0.2;
2015-01-14 22:39:56 +00:00
top: -2px;
position: relative;
2015-05-26 07:47:18 +00:00
margin-left: auto;
2015-01-14 22:39:56 +00:00
2015-05-26 07:47:18 +00:00
.icon-help {
2015-01-14 22:39:56 +00:00
display: block;
}
2013-08-04 22:03:13 +00:00
}
2014-07-02 15:15:50 +00:00
.form-group:not(.formGroup--halfSize) {
clear: left;
}
.form-group.formGroup--halfSize {
width: 50%;
float: left;
}
2014-11-14 10:15:00 +00:00
.fromGroup--standalone .form-control {
margin-bottom: 0;
}
2014-10-07 15:28:24 +00:00
input[type="radio"],
input[type="checkbox"] {
margin: 0;
}
2014-09-26 15:08:41 +00:00
input[type=text],
input[type=password],
input[type=email],
2015-06-16 11:17:55 +00:00
input[type=time],
2014-09-25 11:29:06 +00:00
textarea,
.form-control,
.checkbox.form-group .checkbox {
2014-09-25 11:29:06 +00:00
display: block;
padding: 6px 12px;
width: 100%;
2014-07-02 15:15:50 +00:00
height: 41px;
2014-09-25 11:29:06 +00:00
font-size: 14px;
2014-07-02 15:15:50 +00:00
font-weight: normal;
2014-09-25 11:29:06 +00:00
line-height: 22px;
color: #555;
background: white;
2014-11-15 12:44:13 +00:00
border: 1px solid hsl(0, 0%, 90%);
2014-07-02 15:15:50 +00:00
border-radius: 3px;
transition: none;
2014-11-15 12:44:13 +00:00
box-shadow: none;
2014-09-29 08:38:28 +00:00
outline: none;
appearance: none;
2014-07-02 15:15:50 +00:00
}
2015-06-16 11:17:55 +00:00
input[type=time] {
width: auto;
padding-left: 6px;
padding-right: 6px;
}
2014-10-07 11:07:05 +00:00
.form-control:focus,
.form-control.focus,
.tokenfield.focus {
2014-09-29 08:38:28 +00:00
border-color: hsl(200,71%,59%);
box-shadow: 0 0 0 3px hsl(201,62%,90%);
}
2014-10-07 13:59:21 +00:00
.richtext.form-control {
padding-bottom: 28px;
}
2014-10-07 11:07:05 +00:00
.richtext.form-control [contenteditable] {
height: auto;
2014-10-07 11:07:05 +00:00
min-height: 82px;
background: none;
}
textarea.form-control {
height: 118px;
}
2014-10-07 19:04:00 +00:00
select.form-control {
padding-left: 10px;
2014-11-17 15:08:24 +00:00
padding-right: 34px;
2014-10-07 19:04:00 +00:00
}
.form-control[disabled],
.form-control[readonly] {
cursor: not-allowed;
background-color: #fff;
color: #d5d5d5;
opacity: 1;
}
.form-control + .icon-arrow-down {
2014-10-07 19:04:00 +00:00
position: absolute;
right: 12px;
top: 50%;
margin-top: -3px;
fill: black;
opacity: 0.39;
width: 13px;
height: 7px;
@extend .u-unclickable;
}
/*
Firefox only hack
-----------------
Firefox below version 35 doesn't allow us to
hide the dropdown arrow but we want to replace
it with our own icon. So we have to hide our own
icon in Firefox versions under 35.
The class is set via Javascript
*/
html.ff-lt-35 .form-control + .icon-arrow-down {
display: none;
2014-10-07 19:04:00 +00:00
}
select::-ms-expand {
display: none;
}
2014-07-02 15:15:50 +00:00
.has-error .form-control,
.has-error .form-control:focus,
.has-error .form-control.focus {
2014-07-02 15:15:50 +00:00
box-shadow: none;
border-color: red !important;
2014-07-02 15:15:50 +00:00
}
2015-01-26 06:55:14 +00:00
input.has-error {
box-shadow: none;
border-color: red !important;
}
2014-10-07 15:28:24 +00:00
.help-inline:not(:empty) {
2014-07-02 15:15:50 +00:00
color: red;
2014-10-07 15:28:24 +00:00
padding: 2px;
font-size: 13px;
2014-07-02 15:15:50 +00:00
}
2015-06-09 17:51:43 +00:00
.searchfield {
position: relative;
margin-bottom: 20px;
2015-06-09 17:51:43 +00:00
.icon {
left: 9px;
top: 7px;
2015-06-09 17:51:43 +00:00
width: 17px;
height: 17px;
position: absolute;
fill: hsl(60,1%,61%);
}
input[type=search] {
appearance: textfield;
line-height: 30px;
height: 30px;
border-radius: 19px;
padding: 0 17px 0 34px;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
}
2014-07-02 15:15:50 +00:00
.content {
overflow: auto;
2014-08-07 21:53:46 +00:00
position: relative;
background-color: #f8f9fa;
}
2014-07-02 15:15:50 +00:00
.content.fit {
2014-07-07 17:18:51 +00:00
padding: 10px;
2014-07-02 15:15:50 +00:00
background: #2c2d36;
2015-02-16 08:26:10 +00:00
z-index: 501;
2014-07-02 15:15:50 +00:00
}
.fullscreenMessage {
padding: 22px;
display: flex;
align-items: center;
justify-content: center;
2015-05-22 07:31:42 +00:00
flex: 1;
2015-02-16 08:26:10 +00:00
2015-06-08 13:21:47 +00:00
svg,
.icon {
2015-05-22 07:31:42 +00:00
margin-right: 14px;
2015-01-15 10:12:02 +00:00
}
h2 {
margin: 0;
}
}
2015-06-03 11:56:15 +00:00
.selected-clue {
@extend .zIndex-9;
pointer-events: none;
2015-06-03 11:56:15 +00:00
}
2015-06-08 09:16:08 +00:00
.modal--clue {
display: flex;
align-items: center;
justify-content: center;
2015-06-03 11:56:15 +00:00
@extend .zIndex-8;
2015-06-08 09:16:08 +00:00
.modal-backdrop {
bottom: 0;
2015-06-09 14:17:56 +00:00
width: 200%;
height: 200%;
left: -100%;
top: -100%;
background: radial-gradient(hsla(202,68%,54%,0.1), hsla(202,68%,54%,.9));
2015-06-08 09:16:08 +00:00
}
2015-06-03 11:56:15 +00:00
2015-06-08 09:16:08 +00:00
.modal-spacer {
position: absolute;
opacity: 0;
padding: 18px;
}
2015-06-03 11:56:15 +00:00
2015-06-08 09:16:08 +00:00
.modal-arrow {
background: inherit;
width: 20px;
height: 20px;
position: absolute;
margin: -10px 0 53px -10px;
left: 0;
top: 50%;
transform: rotate(45deg);
2015-06-03 11:56:15 +00:00
}
2015-06-09 14:17:56 +00:00
.modal-spacer[data-position="above"] .modal-arrow {
2015-06-08 09:16:08 +00:00
left: 50%;
top: 100%;
background: hsl(210,5%,97%);
}
2015-06-03 11:56:15 +00:00
2015-06-09 14:17:56 +00:00
.modal-spacer[data-position="below"] .modal-arrow {
2015-06-08 09:16:08 +00:00
left: 50%;
top: 0;
}
2015-06-03 11:56:15 +00:00
2015-06-09 14:17:56 +00:00
.modal-spacer[data-position="left"] .modal-arrow {
2015-06-08 09:16:08 +00:00
left: 100%;
top: 50%;
}
.modal-content {
border: none;
width: 300px;
box-shadow:
0 8px 17px 0 rgba(0, 0, 0, 0.1),
0 6px 20px 0 rgba(0, 0, 0, 0.05);
}
.modal-controls {
background: hsl(210,5%,97%);
margin: 23px 0 0;
padding: 7px 10px;
display: flex;
align-items: center;
justify-content: space-between;
2015-06-03 11:56:15 +00:00
}
2015-06-08 09:16:08 +00:00
.modal-control {
padding-left: 14px;
padding-right: 14px;
.btn.is-disabled {
opacity: 1;
color: hsl(240,5%,83%);
}
}
.modal-header {
padding-bottom: 7px;
font-size: 18px;
2015-06-03 11:56:15 +00:00
}
2015-06-08 09:16:08 +00:00
.modal-body {
max-width: 340px;
}
2015-06-03 11:56:15 +00:00
}
2015-06-08 09:16:08 +00:00
kbd {
2015-06-09 14:17:56 +00:00
background: hsl(200,8%,90%);
2015-06-08 09:16:08 +00:00
border-radius: 3px;
2015-06-09 14:17:56 +00:00
border: 1px solid hsl(240,7%,77%);
box-shadow: 0 1px rgba(0,0,0,.08);
color: hsl(240,7%,37%);
2015-06-08 09:16:08 +00:00
display: inline-block;
font-size: 12px;
margin: 0 1px;
padding: 0 4px;
vertical-align: top;
2015-06-03 11:56:15 +00:00
}
.form-stacked .checkbox label {
color: inherit;
font-size: 13px;
text-transform: inherit;
vertical-align: baseline;
letter-spacing: inherit;
2014-04-07 06:39:45 +00:00
}
2014-07-23 19:47:57 +00:00
.pagination {
margin: 0 0 0 19px;
display: flex;
}
2012-04-23 17:22:34 +00:00
2014-07-23 19:47:57 +00:00
.pagination > li > a,
.pagination > li > span {
padding: 0;
width: 31px;
height: 31px;
border-color: #e5e5e5;
2014-07-23 19:47:57 +00:00
}
2015-01-12 13:32:24 +00:00
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
background: #0F94D6;
border-color: #0F94D6;
}
2014-07-23 19:47:57 +00:00
.pagination-counter {
margin: 0 0 0 19px;
line-height: 33px;
2014-07-23 19:47:57 +00:00
color: #9c9c9b;
}
2014-07-23 19:47:57 +00:00
.pagination-items-range {
color: #706f6f;
2013-07-30 13:58:33 +00:00
}
2014-10-01 11:57:36 +00:00
.page-header {
2015-05-27 12:21:56 +00:00
margin: 0 0 15px;
padding: 0;
2014-10-01 11:57:36 +00:00
border: none;
2015-05-27 12:21:56 +00:00
display: flex;
align-items: center;
flex-wrap: wrap;
2013-07-30 13:58:33 +00:00
}
2014-07-23 19:47:57 +00:00
2014-08-05 13:05:11 +00:00
.page-header-title h1 {
2015-01-14 21:00:37 +00:00
margin-top: 9px;
2014-07-24 14:41:53 +00:00
}
2013-07-30 13:58:33 +00:00
.page-header-meta {
2014-07-23 19:47:57 +00:00
margin-left: auto;
2015-05-27 12:21:56 +00:00
padding-left: 9px;
display: flex;
2015-05-27 12:21:56 +00:00
.btn + .btn {
margin-left: 9px;
}
}
2012-10-17 16:08:03 +00:00
.dropdown-menu .count {
2012-10-17 20:58:43 +00:00
padding-top: 1px;
2012-10-17 16:08:03 +00:00
margin-left: 10px;
}
2014-09-30 11:15:40 +00:00
.help-block {
margin: 0;
2014-11-14 10:15:00 +00:00
color: #bcbcbc;
&.help-block--center {
text-align: center;
}
2014-09-30 11:15:40 +00:00
}
.help-block:not(:empty) {
2014-11-14 10:15:00 +00:00
margin: 8px 2px 10px;
}
/* replace music icon with attachment */
.icon-attachment {
background-position: -24px 0;
}
2013-07-30 13:58:33 +00:00
/*
* hero-unit (used on getstarted, login, signup)
*/
2013-07-30 13:58:33 +00:00
.hero-unit {
2014-07-02 15:15:50 +00:00
width: 500px;
2014-07-07 10:31:03 +00:00
margin: 10px 0;
padding: 23px 25px;
2014-07-02 15:15:50 +00:00
border: 1px solid #e5f0f5;
2013-07-30 13:58:33 +00:00
color: inherit;
2014-07-02 15:15:50 +00:00
background-color: white;
border-radius: 6px;
box-shadow:
0 8px 17px 0 rgba(0, 0, 0, 0.2),
0 6px 20px 0 rgba(0, 0, 0, 0.19);
2013-09-18 13:06:57 +00:00
}
2014-07-04 10:29:52 +00:00
.hero-unit h1,
.hero-unit h2 {
margin-top: 0;
}
2012-11-12 14:05:53 +00:00
.getstarted,
2014-10-07 10:23:03 +00:00
.reset_password,
.signup,
.darkBackground,
.login {
2014-07-12 16:36:23 +00:00
padding: 10px;
2014-09-15 08:54:53 +00:00
background: hsl(234,10%,19%);
2014-07-12 16:36:23 +00:00
}
2014-11-17 15:08:24 +00:00
.content.getstarted {
padding: 0;
2014-11-17 15:08:24 +00:00
.main {
padding: 20px 10px;
}
}
2014-11-17 09:54:40 +00:00
.login {
padding: 24px 24px 97px;
color: hsl(212,8%,40%);
a {
color: hsl(229,2%,51%);
}
&.login--fancy {
color: hsla(0,0%,100%,.7);
background:
radial-gradient(circle at 49.06% 50.5%, #a36f71, transparent 74%),
radial-gradient(circle at 6.95% 9.56%, #745479, transparent 100%),
radial-gradient(circle at 2.58% 98.57%, #392e3e, transparent 51%),
radial-gradient(circle at 82.11% 97.15%, #5c404e, transparent 100%),
radial-gradient(circle at 50% 50%, #8b6b76, #8b6b76 100%);
a {
color: white;
}
.hero-unit {
box-shadow:
0 8px 17px 0 rgba(0, 0, 0, 0.1),
0 6px 20px 0 rgba(0, 0, 0, 0.09);
}
}
2014-11-17 09:54:40 +00:00
}
.login .hero-unit {
width: 430px;
margin: 0 0 28px;
}
.login .company-logo {
max-height: 100px;
max-width: 200px;
margin: 20px auto 42px;
display: block;
}
.login p {
margin: 0 auto 22px;
max-width: 400px;
text-align: center;
}
.login hr {
margin: 0 auto 22px;
border-top-color: rgba(255,255,255,.15);
width: 100%;
max-width: 400px;
}
.login p a {
text-decoration: underline;
}
2014-11-17 09:54:40 +00:00
.poweredBy {
display: flex;
align-items: center;
justify-content: center;
2014-11-17 09:54:40 +00:00
color: hsl(233,7%,26%);
margin: auto 0 34px -16px;
2014-11-17 09:54:40 +00:00
cursor: default;
position: absolute;
bottom: 0;
left: 0;
right: 0;
2014-11-17 09:54:40 +00:00
.logo {
margin-right: 8px;
margin-top: -11px;
}
2014-11-17 09:54:40 +00:00
.logotype {
2014-11-20 09:37:30 +00:00
margin-left: 8px;
margin-top: -5px;
fill: hsl(225,9%,27%);
}
2014-11-17 09:54:40 +00:00
}
.fullscreen {
@extend .fit;
display: table;
width: 100%;
height: 100%;
min-height: 100vh;
}
.fullscreen-center {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.fullscreen-body {
text-align: left;
display: inline-block;
}
2014-11-17 09:54:40 +00:00
.subtle-link {
color: rgba(0,0,0,.32);
text-decoration: underline;
@extend .u-clickable;
}
.subtle-link:hover {
color: rgba(0,0,0,.5);
}
2014-07-02 15:15:50 +00:00
ol.tabs {
list-style: decimal inside;
}
ol.tabs li {
display: list-item;
}
.tabs {
2014-09-18 10:40:17 +00:00
padding: 0;
margin-bottom: 20px;
2014-07-02 15:15:50 +00:00
color: #b8b8b8;
border: 1px solid rgba(0,8,14,.08);
border-radius: 3px;
}
.tabs-condensed .tab {
padding-left: 5px;
padding-right: 5px;
}
2014-07-02 15:31:34 +00:00
.progress-tabs .tab {
cursor: default;
}
2014-07-02 15:15:50 +00:00
.tab {
2014-09-29 08:38:28 +00:00
height: 40px;
padding: 10px 20px;
2014-07-02 15:15:50 +00:00
text-align: center;
border-right: 1px solid rgba(0,8,14,.08);
flex: 1 1 auto;
@extend .u-clickable;
2014-07-02 15:15:50 +00:00
}
.tab.active {
color: white;
background: #444a4f;
box-shadow: none;
2014-07-02 15:15:50 +00:00
}
2014-07-02 15:31:34 +00:00
2014-07-02 15:15:50 +00:00
.tab:first-child {
border-radius: 3px 0 0 3px;
}
.tab:last-child {
border-radius: 0 3px 3px 0;
border-right: none;
}
2014-07-18 16:18:13 +00:00
.wide-tabs {
margin: 25px auto 20px;
font-size: 15px;
font-weight: 300;
background: white;
border-radius: 8px;
}
2014-11-07 13:37:02 +00:00
.dashboard .wide-tabs {
width: 60%;
}
2014-07-18 16:18:13 +00:00
.wide-tabs .tab:first-child {
border-radius: 8px 0 0 8px;
}
.wide-tabs .tab:last-child {
border-radius: 0 8px 8px 0;
}
2014-07-07 10:31:03 +00:00
.separator {
margin: 20px 0;
position: relative;
text-align: center;
}
.separator:before {
content: "";
position: absolute;
width: 100%;
height: 1px;
top: 50%;
left: 0;
margin-top: -1px;
background: #e6e6e6;
}
.separator-text {
padding: 0 10px;
color: #999;
font-size: 12px;
letter-spacing: 0.1em;
text-transform: uppercase;
background: white;
display: inline-block;
position: relative;
}
2014-11-14 10:15:00 +00:00
.auth_provider,
.auth_provider:hover {
padding: 9px 10px 9px 7px;
2014-07-07 10:31:03 +00:00
color: white;
line-height: 22px;
text-align: center;
2014-11-14 10:15:00 +00:00
border-radius: 4px;
display: flex;
2014-11-14 10:15:00 +00:00
&.auth_provider--wide {
padding-right: 25px;
}
2014-07-07 10:31:03 +00:00
}
2014-11-14 10:15:00 +00:00
.auth_providers .auth_provider:not(:last-child) {
2014-07-07 10:31:03 +00:00
margin-right: 8px;
}
.auth_provider:hover {
color: white;
text-decoration: none;
@extend .u-clickable;
2014-07-07 10:31:03 +00:00
}
2014-11-14 10:15:00 +00:00
.auth_provider.facebook,
.btn.facebook:hover {
background: #4f699c;
}
.auth_provider.google,
.btn.google:hover {
background: #d8543c;
}
.auth_provider.twitter,
.btn.twitter:hover {
background: hsl(197, 75%, 53%);
2014-07-07 10:31:03 +00:00
}
2014-11-14 10:15:00 +00:00
.auth_provider.email,
.btn.email:hover {
background: hsl(47, 100%, 59%);
2014-07-07 10:31:03 +00:00
}
2014-11-14 10:15:00 +00:00
.provider_name {
flex: 1;
2014-07-07 10:31:03 +00:00
}
.provider_icon {
width: 29px;
height: 22px;
background: image_url("/assets/images/provider.svg") no-repeat;
2014-07-07 10:31:03 +00:00
}
.facebook.provider_icon {
background-position: 0 0;
2014-07-07 10:31:03 +00:00
}
.google.provider_icon {
background-position: -30px 0;
2014-07-07 10:31:03 +00:00
}
.twitter.provider_icon {
background-position: -60px 0;
}
.email.provider_icon {
background-position: -90px 0;
2014-07-07 10:31:03 +00:00
}
/*
global icon definitions
=======================
*/
2015-05-07 17:27:53 +00:00
.icon-arrow-down,
.icon-arrow-up,
.icon-arrow-left,
.icon-arrow-right {
fill: black;
opacity: 0.39;
}
.arrow--disabled {
opacity: 0.23;
}
.icon-checkmark {
fill: #38AE6A;
}
.icon-error {
fill: #F35910;
}
2015-05-26 08:10:29 +00:00
.loading.icon {
display: inline-block;
width: 30px;
height: 30px;
background: hsl(145,51%,45%);
animation: rotateplane 1.2s infinite ease-in-out;
}
2015-05-26 08:10:29 +00:00
.small.loading.icon {
width: 20px;
height: 20px;
}
2015-03-10 20:11:36 +00:00
2015-05-26 08:10:29 +00:00
@keyframes rotateplane {
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
} 50% {
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
} 100% {
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
2015-03-10 20:11:36 +00:00
}
2015-05-26 08:10:29 +00:00
}
2015-03-10 20:11:36 +00:00
2015-05-26 08:10:29 +00:00
.color-swatch {
border-radius: 100%;
width: 11px;
height: 11px;
}
2015-03-10 20:11:36 +00:00
2014-07-18 16:18:13 +00:00
/*
* removed margin of forms to not break the layout with submit buttons within <form></form> area e. g. for modal dialogs
*/
form {
margin: 0;
}
.form-controls {
@extend .clearfix;
margin-top: 10px;
}
form a.standalone {
line-height: 40px;
margin: 0 5px;
}
form a.standalone.align-right {
margin-left: auto;
}
2012-04-10 14:06:46 +00:00
footer {
2013-07-30 13:58:33 +00:00
clear: both;
padding-top: 10px;
2013-07-30 13:58:33 +00:00
padding-left: 10px;
padding-right: 22px;
2012-04-10 14:06:46 +00:00
}
2012-11-07 09:04:16 +00:00
.can-move {
cursor: move;
}
2012-12-07 00:01:43 +00:00
.can-move-placeholder {
border: 1px dashed #DDD;
background: #EEE;
margin-top: 5px;
margin-bottom: 5px;
2012-11-07 09:04:16 +00:00
}
2013-08-04 22:03:13 +00:00
.customer_info {
}
.customer_info ul.nav > li {
width: 50%;
}
.customer_info ul.nav > li > a {
@extend .u-textTruncate;
2013-08-04 22:03:13 +00:00
}
.customer_info .thumbnail {
position: absolute;
right: 20px;
2013-08-04 22:03:13 +00:00
}
.customer_info textarea {
padding-left: 10px;
width: 100%;
border-color: #eee;
}
.tableOverview {
2014-08-05 13:05:11 +00:00
padding: 10px 20px;
}
2015-01-12 13:32:24 +00:00
.tableOverview-edit {
2015-05-08 09:58:00 +00:00
@extend .u-clickable, .u-highlight;
2015-01-12 13:32:24 +00:00
}
.bulkAction {
2014-08-05 13:05:11 +00:00
background: white;
z-index: 1;
box-shadow:
0 -1px rgba(0,0,0,.05),
0 -2px rgba(0,0,0,.03),
0 -3px rgba(0,0,0,.01);
2013-09-18 21:04:18 +00:00
}
.bulkAction .btn {
2014-09-19 11:39:56 +00:00
margin: 0 10px;
}
.bulkAction-controls {
margin-top: 10px;
2014-09-19 11:39:56 +00:00
}
.show_toogle {
font-size: 10px;
line-height: 12px;
color: #999999;
}
.well-muted {
2012-04-23 21:44:47 +00:00
background-color: whiteSmoke;
border: 1px solid #eee;
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 4px;
2013-07-30 13:58:33 +00:00
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2012-04-10 14:06:46 +00:00
}
2012-08-24 18:54:57 +00:00
.merged, .merge:hover {
text-decoration: line-through;
}
2012-05-13 12:53:35 +00:00
.translation {
border: 1px dotted #F92;
border-radius: 3px;
}
.translation:hover {
}
2015-04-27 06:20:52 +00:00
.translation[contenteditable="true"] {
display: inline;
}
2012-05-13 12:53:35 +00:00
.translation .icon-edit {
display: none;
}
.translation:hover .icon-edit {
display: inline-block;
}
.sub_attribute .control-label {
width: 60px;
}
.sub_attribute .controls {
margin-left: 80px;
}
#splash {
background-color: #eee;
position: absolute;
width: 100%;
2013-08-19 20:46:19 +00:00
top: 0;
height: 100%;
}
#splash .logo {
margin-left: auto;
margin-right: auto;
margin-top: 200px;
width: 100px;
}
2013-08-19 20:46:19 +00:00
2014-07-07 17:18:51 +00:00
.navigation {
width: $navigationWidth;
background: hsl(232,10%,16%);
2014-07-12 16:36:23 +00:00
position: relative;
2014-07-07 17:18:51 +00:00
}
2014-07-12 16:36:23 +00:00
.navigation:empty {
display: none !important;
}
.main-navigation {
padding: 0;
margin: 0;
list-style: none;
flex-shrink: 0;
}
2014-07-07 17:18:51 +00:00
.main-navigation > li > a {
2014-08-07 21:53:23 +00:00
padding: 0 15px;
height: 48px;
2014-07-07 17:18:51 +00:00
color: rgba(240, 250, 255, .25);
border-bottom: 1px solid rgba(240, 250, 255, .05);
text-decoration: none;
2014-07-07 17:18:51 +00:00
}
.main-navigation > li > a:hover {
background: hsl(230,10%,13%);
border-bottom-color: rgba(240, 250, 255, .08);
}
.main-navigation > li.active > a,
.main-navigation > li.is-hovered > a {
background: none;
color: white;
}
2014-09-19 11:39:56 +00:00
.main-navigation > li.active .nav-icon,
.main-navigation > li.active .dropdown-icon,
.main-navigation > li.is-hovered .nav-icon {
2015-05-07 17:27:53 +00:00
fill: currentColor;
}
.main-navigation li.active > a,
.main-navigation li.is-hovered > a {
2014-07-07 17:18:51 +00:00
background: #389ed9;
}
.main-navigation .dropdown-menu {
left: 10px;
right: 15px;
min-width: 0;
}
.main-navigation .nav-icon {
2014-07-07 17:18:51 +00:00
margin-right: 15px;
vertical-align: bottom;
2015-05-07 17:27:53 +00:00
width: 24px;
height: 24px;
fill: hsl(206,7%,37%);
2014-07-07 17:18:51 +00:00
}
.main-navigation .dropdown-icon {
fill: hsl(206,7%,37%);
}
.tasks {
2014-07-09 14:49:42 +00:00
background: #2c2d36;
2015-05-26 08:10:29 +00:00
flex: 1;
2015-06-11 12:48:38 +00:00
overflow: auto;
}
2014-11-07 13:37:02 +00:00
.tasks.tasks--standalone {
background: none;
margin: 8px 0 0;
padding: 0;
2015-06-11 12:48:38 +00:00
overflow: visible;
}
2014-11-07 13:37:02 +00:00
.tasks--standalone .task {
padding: 0;
margin-bottom: 9px;
display: flex;
2014-11-07 13:37:02 +00:00
}
2015-06-11 14:06:02 +00:00
.tasks--standalone .task-text {
flex: 1;
min-width: 0; /* Firefox wrong content-calculation with word-wrap workaround */
}
2015-06-08 13:25:12 +00:00
.tasks--standalone .name {
2015-05-08 09:58:00 +00:00
@extend .u-highlight, .u-textTruncate;
2015-06-11 14:06:02 +00:00
display: block;
}
2014-11-07 13:37:02 +00:00
.tasks--standalone .time {
color: hsl(198,19%,72%);
}
.tasks--standalone .icon-priority {
margin-right: 4px;
margin-top: 2px;
}
2015-05-08 16:33:50 +00:00
.nav-tab {
2014-07-19 18:55:06 +00:00
padding: 10px 15px 7px 0;
2014-07-09 14:49:42 +00:00
position: relative;
color: #808080;
display: flex;
align-items: center;
@extend .u-clickable;
2014-07-09 14:49:42 +00:00
}
2015-05-08 16:33:50 +00:00
.tasks-navigation .nav-tab {
height: 38px;
border-bottom: 1px solid #33363e;
}
2014-07-15 08:30:50 +00:00
2015-05-08 16:33:50 +00:00
.tasks-navigation .nav-tab:not(.is-active):hover {
background: #26272e;
}
2014-07-14 07:45:43 +00:00
2015-05-08 16:33:50 +00:00
.navigation .nav-tab-name {
text-align: left;
2015-05-26 23:24:03 +00:00
padding-bottom: 2px;
}
2015-06-10 10:37:44 +00:00
.tasks-navigation .nav-tab-icon .error {
transform: scale(0.85);
}
2015-05-08 16:33:50 +00:00
.nav-tab:hover {
color: #808080;
text-decoration: none;
2014-07-09 14:49:42 +00:00
}
2015-05-08 16:33:50 +00:00
.nav-tab.is-active,
.nav-tab.nav-tab--search:hover {
background: #389ed9;
color: white;
2015-05-26 23:24:03 +00:00
2015-06-02 11:35:45 +00:00
.nav-tab-icon .icon {
fill: white;
}
}
2014-07-09 14:49:42 +00:00
2015-05-27 09:30:58 +00:00
.nav-tab.ui-sortable-helper {
border-bottom-color: transparent;
}
2015-05-08 16:33:50 +00:00
.nav-tab.nav-tab--search {
height: 30px;
2014-07-09 14:49:42 +00:00
}
2015-05-08 16:33:50 +00:00
.nav-tab-icon {
margin-right: 7px;
margin-left: 7px;
margin-top: -3px;
2015-06-02 11:35:45 +00:00
display: flex;
align-items: center;
justify-content: center;
position: relative;
2015-06-10 10:49:57 +00:00
width: 16px;
}
2015-06-02 11:35:45 +00:00
.nav-tab-icon .icon {
width: 16px;
height: 16px;
fill: #808080;
}
2015-06-10 10:49:57 +00:00
.nav-tab-icon .icon-diagonal-cross {
fill: #F35910;
width: 12px;
height: 12px;
}
2015-06-02 11:35:45 +00:00
.nav-tab-icon .modified-inner-circle {
position: absolute;
left: 0;
top: 0;
2015-05-27 08:58:23 +00:00
will-change: opacity;
transform: translateZ(0);
2015-06-02 11:35:45 +00:00
animation: fade 1.8s ease-in-out infinite;
}
2015-05-26 23:24:03 +00:00
@keyframes fade {
2015-06-02 11:35:45 +00:00
54% { opacity: 1 }
90% { opacity: 0 }
to { opacity: 1 }
2015-01-13 16:04:54 +00:00
}
2014-07-09 14:49:42 +00:00
2015-06-02 11:35:45 +00:00
.nav-tab-icon .icon.icon-loading {
2015-05-22 10:36:12 +00:00
animation: rotateplane 1.2s infinite ease-in-out;
fill: $supergood-color;
}
2015-05-08 16:33:50 +00:00
.nav-tab-close {
2014-07-09 14:49:42 +00:00
position: absolute;
right: 0;
top: 0;
2014-09-15 22:09:42 +00:00
width: 50px;
2014-07-09 14:49:42 +00:00
height: 100%;
visibility: hidden;
@extend .u-clickable;
display: flex;
align-items: center;
justify-content: center;
2014-07-09 14:49:42 +00:00
}
2015-05-08 16:33:50 +00:00
.nav-tab:hover .nav-tab-close {
2014-09-15 22:09:42 +00:00
visibility: visible;
}
2014-07-09 14:49:42 +00:00
2015-05-08 16:33:50 +00:00
.nav-tab-close-inner {
2015-05-27 12:32:27 +00:00
width: 19px;
height: 19px;
2014-09-15 22:09:42 +00:00
background-color: #2c2d36;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
2014-09-15 22:09:42 +00:00
}
2014-07-09 14:49:42 +00:00
2015-05-08 16:33:50 +00:00
.nav-tab-close:hover .nav-tab-close-inner {
2014-09-15 22:09:42 +00:00
background-color: #972e29;
}
.nav-tab-close svg {
2015-05-27 12:32:27 +00:00
width: 9px;
height: 9px;
fill: white;
2014-09-15 22:09:42 +00:00
opacity: 0.3;
}
.nav-tab-close:hover svg {
2014-09-15 22:09:42 +00:00
opacity: 1;
2015-05-26 23:24:03 +00:00
}
2014-07-09 14:49:42 +00:00
.level-1.is-active {
background-color: #38ae6a;
}
2015-06-02 11:35:45 +00:00
.level-1 .icon-priority,
2015-05-27 14:55:08 +00:00
.level-1.icon-priority {
fill: #38ae6a;
}
.level-2.is-active {
background-color: #f35910;
}
2015-06-02 11:35:45 +00:00
.level-2 .icon-priority,
2015-05-27 14:55:08 +00:00
.level-2.icon-priority {
fill: #f35910;
}
.level-3.is-active {
background-color: #faab00;
}
2015-06-02 11:35:45 +00:00
.level-3 .icon-priority,
2015-05-27 14:55:08 +00:00
.level-3.icon-priority {
fill: #faab00;
}
2014-07-07 17:18:51 +00:00
.search {
2015-06-08 09:16:08 +00:00
padding: 11px 5px 4px 10px;
2014-07-07 17:18:51 +00:00
border-bottom: 1px solid rgba(240, 250, 255, .05);
flex-shrink: 0;
2015-05-26 08:10:29 +00:00
display: flex;
2015-06-03 11:56:15 +00:00
background-color: inherit;
2014-07-07 17:18:51 +00:00
}
2014-07-12 16:36:23 +00:00
.search-holder {
2015-05-26 08:10:29 +00:00
flex: 1;
2015-06-08 09:16:08 +00:00
border-radius: 15px;
2014-07-12 16:36:23 +00:00
position: relative;
transition: 240ms;
}
.empty-search {
position: absolute;
right: 0;
top: 0;
height: 30px;
width: 40px;
z-index: 1;
visibility: hidden;
display: flex;
align-items: center;
justify-content: center;
2015-06-08 09:40:33 +00:00
cursor: pointer;
2015-05-07 17:27:53 +00:00
}
.empty-search .icon-diagonal-cross {
2015-05-07 17:27:53 +00:00
fill: white;
opacity: 0.5;
2014-07-12 16:36:23 +00:00
}
.filled.search .empty-search {
visibility: visible;
}
2014-07-07 17:18:51 +00:00
2015-06-10 09:41:36 +00:00
.search input[type=search] {
2014-07-12 16:36:23 +00:00
width: 100%;
2015-06-08 09:27:17 +00:00
padding: 5px 33px 5px 33px;
height: 30px;
color: #ECECEC;
2015-05-07 17:27:53 +00:00
background: #31373b;
line-height: 20px;
outline: none;
border: none;
border-radius: 15px;
position: relative;
z-index: 1;
2015-06-10 09:41:36 +00:00
appearance: textfield;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
-webkit-appearance: none;
}
2014-07-07 17:18:51 +00:00
2015-05-26 08:10:29 +00:00
.search .icon-magnifier {
2015-05-07 17:27:53 +00:00
position: absolute;
top: 8px;
left: 10px;
z-index: 2;
opacity: 0.5;
fill: white;
}
2014-07-12 16:36:23 +00:00
.search.focused .search-holder {
margin-right: -46px;
}
.search.focused .logo {
opacity: 0;
z-index: -1;
}
.search .logo {
position: relative;
@extend .u-clickable, .zIndex-5;
2015-06-08 09:16:08 +00:00
margin: -4px 10px 0 12px;
transition: 240ms;
}
.search .logo .icon-logo {
2014-08-05 13:26:57 +00:00
position: relative;
}
.search .logo .activity-counter {
height: 20px;
min-width: 21px;
2014-08-05 13:26:57 +00:00
position: absolute;
right: -3px;
2015-06-03 07:49:09 +00:00
bottom: 2px;
padding: 0 4px;
2015-06-03 07:49:09 +00:00
font-size: 12px;
font-weight: 300;
2015-06-11 13:16:15 +00:00
line-height: 16px;
2014-08-05 13:26:57 +00:00
text-align: center;
color: white;
text-shadow: 0 1px 1px rgba(0,0,0,.21);
background: hsl(360,71%,60%);
border-radius: 10px;
border: 2px solid hsl(233,10%,16%);
}
.search .logo .activity-counter:empty {
display: none;
2014-08-05 13:26:57 +00:00
}
2014-07-12 16:36:23 +00:00
.search .custom-dropdown-menu {
margin: 0;
2014-07-12 16:36:23 +00:00
padding: 0;
list-style: none;
background: #26272e;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 53px;
2015-06-11 13:53:45 +00:00
z-index: 900;
2014-07-12 16:36:23 +00:00
display: none;
overflow: scroll;
2014-07-12 16:36:23 +00:00
}
.search.open .custom-dropdown-menu {
display: block;
}
.search .custom-dropdown-menu .divider {
height: 1px;
background: #2f3238;
margin: 14px 0 17px;
}
.user-menu {
padding: 0;
margin: 0;
list-style: none;
position: relative;
flex-shrink: 0;
2015-05-26 08:10:29 +00:00
display: flex;
}
.user-menu > li {
2015-05-26 08:10:29 +00:00
flex: 1;
background: #26272e;
}
.user-menu .list-button {
height: 60px;
position: relative;
text-decoration: none;
@extend .u-clickable;
display: flex;
align-items: center;
justify-content: center;
}
.user-menu .list-button *:not(.dropdown-nose) {
position: relative;
}
2015-06-08 09:16:08 +00:00
.user-menu > li:hover .list-button:before,
.user-menu > li.is-hovered .list-button:before {
content: '';
position: absolute;
top: 4px;
right: 4px;
bottom: 4px;
left: 4px;
background: white;
}
2015-06-08 09:16:08 +00:00
.user-menu li.add:hover .list-button:before,
.user-menu li.add.is-hovered .list-button:before {
background: #38ae6a;
}
.user-menu-icon {
2015-05-07 17:27:53 +00:00
width: 20px;
height: 20px;
fill: hsl(0,0%,30%);
}
.user-menu-icon.icon-plus {
2015-05-07 17:27:53 +00:00
fill: hsl(145,51%,45%);
}
.user-menu > li.settings:hover .user-menu-icon,
.user-menu > li.settings.active .user-menu-icon {
2015-05-07 17:27:53 +00:00
fill: hsl(232,10%,16%);
}
.user-menu > li.add:hover .user-menu-icon.icon-plus,
2015-06-08 09:16:08 +00:00
.user-menu > li.add.is-hovered .user-menu-icon.icon-plus,
.user-menu > li.add.active .user-menu-icon.icon-plus {
2015-05-07 17:27:53 +00:00
fill: white;
}
.user-menu > li:not(:last-child) {
border-right: 1px solid #2c2d36;
}
.dropdown-nose {
position: absolute;
border: 7px solid transparent;
border-bottom: none;
border-top: 7px solid white;
left: 50%;
margin-left: -7px;
top: -6px;
display: none;
}
li.add .dropdown-nose {
border-top-color: #38af6e;
}
.open.dropdown .dropdown-nose,
.open.dropup .dropdown-nose {
display: block;
}
.user-menu .dropdown-menu {
padding: 0;
border-radius: 0;
margin-bottom: 5px;
min-width: 0;
left: 10px;
right: 15px;
2014-09-18 09:11:17 +00:00
width: auto;
}
.user-menu li.add .dropdown-menu {
background-color: #38af6e;
}
2015-05-28 15:25:07 +00:00
.user-menu li.add .dropdown-menu li > a {
color: white;
}
.user-menu li.add .dropdown-menu .divider {
background: #4cb77c;
}
.user-menu .dropdown-menu .divider {
margin: 0;
}
.user-menu .dropdown-menu > li > a {
display: flex;
}
.avatar {
width: 40px;
height: 40px;
background-size: cover;
background-position: center;
2014-08-27 16:36:32 +00:00
background-color: rgba(0,0,0,.05);
border-radius: 100%;
display: inline-block;
vertical-align: bottom;
}
2015-02-06 15:19:07 +00:00
:not(.navigation) .avatar.vip {
border: 2px dotted;
border-color: #fff;
}
.avatar.size-50 {
2014-08-05 15:31:26 +00:00
width: 50px;
height: 50px;
}
.avatar.size-80 {
width: 82px;
height: 82px;
}
2014-09-18 10:40:17 +00:00
.unique.avatar {
background-image: image_url("/assets/images/avatar-bg.png");
2014-09-18 10:40:17 +00:00
background-size: auto;
color: white;
2015-05-26 21:53:16 +00:00
line-height: 40px;
2014-09-18 10:40:17 +00:00
text-align: center;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
text-shadow: 0 1px rgba(0,0,0,.2);
cursor: default;
2014-09-18 10:40:17 +00:00
}
2015-02-06 15:19:07 +00:00
:not(.navigation) .unique.avatar.vip {
border: 2px dotted;
2015-06-04 08:54:31 +00:00
line-height: 36px;
2015-02-06 15:19:07 +00:00
}
.unique.avatar.size-50 {
2014-09-18 10:40:17 +00:00
font-size: 16px;
line-height: 52px;
}
2015-02-06 15:19:07 +00:00
:not(.navigation) .unique.avatar.size-50.vip {
2015-06-04 08:54:31 +00:00
line-height: 46px;
2015-02-06 15:19:07 +00:00
}
.unique.avatar.size-80 {
font-size: 20px;
line-height: 84px;
}
2015-02-06 15:19:07 +00:00
:not(.navigation) .unique.avatar.size-80.vip {
font-size: 20px;
2015-06-04 08:54:31 +00:00
line-height: 78px;
2015-02-06 15:19:07 +00:00
}
2014-07-07 17:18:51 +00:00
.sidebar {
2014-07-24 14:59:43 +00:00
width: 32%;
2014-09-15 13:15:01 +00:00
max-width: 300px;
2014-09-24 11:24:01 +00:00
padding: 20px;
color: hsl(60,1%,34%);
2014-07-07 17:18:51 +00:00
background: white;
border-right: 1px solid #e6e6e6;
2014-07-07 18:31:45 +00:00
overflow: auto;
2014-07-07 17:18:51 +00:00
}
.sidebar h3 {
margin: 0;
color: rgba(0,8,14,.73);
font-weight: normal;
font-size: 16px;
text-transform: initial;
letter-spacing: 0;
}
.sidebar-block {
margin: 20px 0;
2015-01-16 16:33:42 +00:00
&:first-child {
margin-top: 0;
}
}
.sidebar-block,
.sidebar-block > * {
@extend .u-textTruncate;
}
.sidebar-block [contenteditable=true] {
white-space: normal; // do no u-textTruncate, we want to edit it inline
}
2014-08-05 15:31:26 +00:00
.main + .sidebar {
border-right: none;
border-left: 1px solid #e6e6e6;
}
2014-07-24 14:59:43 +00:00
.NavBarAdmin.sidebar {
padding-top: 1px;
width: $sidebarWidth;
2014-07-24 14:59:43 +00:00
}
2014-09-25 13:42:21 +00:00
.NavBarAdmin h2 {
margin: 21px 0 12px;
}
2014-07-24 14:59:43 +00:00
2014-07-07 18:31:45 +00:00
.nav-stacked > li + li {
margin-top: 0;
}
2014-10-08 09:09:21 +00:00
.nav-pills > li > a,
.nav-pills > li > a:focus,
.nav-pills > li > a:active {
2014-09-24 10:09:24 +00:00
padding: 0;
height: 40px;
2014-07-07 18:31:45 +00:00
color: #0f94d6;
2014-09-24 10:09:24 +00:00
line-height: 39px;
2014-07-07 18:31:45 +00:00
border-radius: 0;
border-top: 1px solid #f2f2f3;
2014-10-08 09:09:21 +00:00
background: transparent; /* a:focus, a:active with bg: transparent fixes gray focus bg in IE 10 */
display: flex;
@extend .u-textTruncate;
2014-07-07 18:31:45 +00:00
}
.nav-pills > li:hover > a {
background: #f2f2f3;
}
.nav-pills > li:hover > a,
2014-10-08 09:09:21 +00:00
.nav-pills > li:hover + li:not(.active) > a {
border-color: transparent;
}
2014-07-07 18:31:45 +00:00
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: white;
background: #2c2d36;
2014-10-08 09:09:21 +00:00
border-color: initial;
2014-07-07 18:31:45 +00:00
}
.nav-pills > li:hover > a,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
padding-left: 10px;
padding-right: 10px;
margin-left: -10px;
margin-right: -10px;
}
2014-07-24 14:59:43 +00:00
.sidebar:not(.NavBarAdmin) .nav-pills > li:first-child > a {
border-top: none;
}
.badge {
2014-09-24 10:09:24 +00:00
min-width: 0;
2014-07-24 14:59:43 +00:00
padding: 0;
2014-09-24 10:09:24 +00:00
margin-right: 5px;
2014-07-24 14:59:43 +00:00
font-size: inherit;
font-weight: normal;
2014-09-24 10:09:24 +00:00
text-align: left;
2014-07-24 14:59:43 +00:00
color: #d0d2d3;
background: none;
border-radius: 0;
}
.nav-pills > li > a > .badge {
margin-left: auto;
}
a.list-group-item.active > .badge,
2014-07-24 14:59:43 +00:00
.nav-pills > .active > a > .badge {
color: #96969b;
background: none;
}
2014-07-07 17:18:51 +00:00
.main {
padding: 10px 20px;
2014-07-07 18:31:45 +00:00
overflow: auto;
2014-08-05 13:05:11 +00:00
position: relative;
2014-07-15 08:30:50 +00:00
}
2014-08-06 17:36:45 +00:00
.main.no-padding {
padding: 0;
}
.tooltip {
font-family: inherit;
}
2014-07-15 08:30:50 +00:00
.popover {
font-family: inherit;
2014-07-15 08:30:50 +00:00
width: 372px;
max-width: 9999px;
border-radius: 0;
border: none;
2015-05-27 14:55:08 +00:00
color: hsl(206,7%,28%);
2014-07-15 08:30:50 +00:00
box-shadow: 0 1px 14px rgba(0,8,14,.25);
2015-06-11 13:53:45 +00:00
z-index: 900;
2014-07-15 08:30:50 +00:00
}
2015-03-25 17:00:00 +00:00
.popover-body {
overflow: auto;
}
2014-07-15 08:30:50 +00:00
.popover-title {
border: none;
background: none;
2015-01-20 01:44:33 +00:00
padding: 21px 17px 4px;
2014-07-15 08:30:50 +00:00
}
.popover-content {
padding: 0 17px 10px;
}
.popover.right { margin-left: 4px; }
.popover.right > .arrow {
border-right: none;
left: -9px;
}
.popover.top { margin-bottom: 9px; }
.popover.top > .arrow {
border-top: none;
bottom: -9px;
}
.popover.left { margin-right: 9px; }
.popover.left > .arrow {
border-left: none;
right: -9px;
}
.popover.bottom { margin-top: 9px; }
.popover.bottom > .arrow {
border-bottom: none;
top: -9px;
}
.popover > .arrow:after {
border-width: 8px;
}
.popover .priority.icon:after {
background: white;
}
.popover .person .organization {
2014-07-15 08:30:50 +00:00
color: #a1a4a7;
}
2015-01-14 22:45:18 +00:00
.popover .user-organization {
@extend .u-textTruncate;
2015-01-14 22:45:18 +00:00
margin-bottom: 8px;
margin-top: -4px;
}
.popover-block {
@extend .sidebar-block;
margin: 10px 0;
}
2014-07-15 08:30:50 +00:00
.popover hr {
margin: 8px 0;
}
.popover .person .organization:before { content: '('; }
.popover .person .organization:after { content: ')'; }
2014-07-15 08:30:50 +00:00
.popover label {
font-size: 13px;
color: #a9bcc4;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.07em;
}
.popover .column label {
2014-07-15 08:30:50 +00:00
margin: 8px 0 1px;
}
.popover .column {
margin-bottom: 8px;
2014-07-18 16:18:13 +00:00
}
2015-01-20 01:44:33 +00:00
.popover--notifications {
min-height: 100px;
2015-05-04 17:02:24 +00:00
width: auto;
max-width: 400px;
min-width: 350px;
2015-06-09 14:49:49 +00:00
position: absolute;
2015-01-20 01:44:33 +00:00
@extend .zIndex-5;
2015-05-04 17:02:24 +00:00
&.fade {
display: inline-block !important;
2015-01-20 01:44:33 +00:00
}
.arrow {
top: 23px !important;
}
.popover-content {
flex: 1;
overflow-y: scroll;
}
&.is-overflowing .popover-notificationsHeader {
box-shadow:
0 1px hsla(240,4%,95%,.5),
0 2px hsla(240,4%,95%,.2);
}
2015-01-20 01:44:33 +00:00
}
.popover-notificationsHeader {
padding-bottom: 8px;
margin: 21px 17px 0;
2015-01-20 01:44:33 +00:00
.popover-title {
@extend h1;
padding: 0;
line-height: 1;
}
2015-01-19 12:21:43 +00:00
}
.popover-notificationsCounter {
color: #e25253;
2015-01-20 01:44:33 +00:00
padding-left: 3px;
2015-01-19 12:21:43 +00:00
}
.popover-notificationsMarkRead {
@extend .btn;
cursor: pointer;
2015-06-10 00:37:59 +00:00
padding: 7px 0 0 2px;
text-decoration: underline;
color: hsl(0,0%,77%);
display: block;
2015-06-10 00:37:59 +00:00
2015-01-20 01:44:33 +00:00
&:hover {
2015-06-10 00:37:59 +00:00
padding: 7px 0 0 2px;
2015-01-20 01:44:33 +00:00
}
2015-01-19 12:21:43 +00:00
}
2015-05-08 09:58:00 +00:00
.stat-icon {
position: relative;
}
.mood-icon {
width: 60px;
height: 59px;
}
.stopwatch-icon {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.stat-stopwatch {
width: 77px;
height: 83px;
position: relative;
}
.stat-channel-icon {
width: 16px;
height: 16px;
fill: hsl(198,18%,72%);
}
.total-tickets {
height: 83px;
width: 48px;
margin-right: 4px;
margin-bottom: -9px;
}
.one-ticket {
width: 48px;
height: 10px;
margin-top: -7px;
margin-bottom: 2px;
}
.stat-tickets {
height: 100px;
}
.in-process-icon {
width: 64px;
height: 64px;
}
.reopening-icon {
width: 68px;
height: 47px;
}
.state-color {
&.supergood-state { fill: $supergood-color;}
&.good-state { fill: $good-color; }
&.ok-state { fill: $ok-color; }
&.bad-state { fill: $bad-color; }
&.superbad-state { fill: $superbad-color; }
}
2014-07-18 16:18:13 +00:00
.stat-widgets {
2014-07-24 14:41:53 +00:00
margin: 0 -7px 20px;
2014-07-18 16:18:13 +00:00
}
.stat-widget {
height: 200px;
padding: 13px;
text-align: center;
line-height: 20px;
2014-11-07 13:37:02 +00:00
}
.dashboard .stat-widget {
margin: 7px;
2014-07-18 16:18:13 +00:00
background: white;
border: 1px solid #e5f0f5;
border-radius: 1px;
box-shadow: 0 1px rgba(0,8,14,.02);
}
.stat-widget h3 {
margin: 2px 0 8px;
color: #444a4f;
letter-spacing: 0;
font-weight: normal;
}
.stat-widget .stat-label {
color: #444a4f;
2014-11-07 13:37:02 +00:00
@extend .u-textTruncate;
2014-07-18 16:18:13 +00:00
}
.stat-widget .stat-detail {
color: #b4b7b9;
2014-11-07 13:37:02 +00:00
@extend .u-textTruncate;
2014-07-18 16:18:13 +00:00
}
.channel-distribution.stat-widget {
color: #a1a4a7;
}
2014-11-07 13:37:02 +00:00
.stat-graphic {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
2014-07-19 16:20:34 +00:00
}
.time.stat-widget .stat-amount {
2015-05-26 21:53:16 +00:00
margin-top: 8px;
2014-07-19 16:20:34 +00:00
text-align: center;
font-size: 30px;
color: white;
text-shadow: 0 2px rgba(0,8,14,.2);
position: relative;
}
.time.stat-widget .stat-dial {
position: absolute;
top: 21px;
left: 14px;
}
2014-11-07 13:37:02 +00:00
.stats-row {
2014-07-18 16:18:13 +00:00
padding: 8px 0 7px;
margin-bottom: -7px;
border-radius: 3px;
display: flex;
flex-direction: column;
align-items: center;
2014-07-18 16:18:13 +00:00
}
2014-11-07 13:37:02 +00:00
.stats-row:hover {
2014-07-18 16:18:13 +00:00
background: rgba(0,8,14,.03);
}
2014-11-07 13:37:02 +00:00
.stats-row .stat-bars {
2014-07-18 16:18:13 +00:00
height: 73px;
margin: 16px 0 15px;
padding: 2px 12px;
width: 100%;
background: linear-gradient(to top, #f2f2f3, #f2f2f3 1px, transparent 1px);
background-position: center bottom;
background-size: 100% 12px;
display: flex;
align-items: flex-end;
2014-07-18 16:18:13 +00:00
}
2014-11-07 13:37:02 +00:00
.stat-bars .stat-bar {
2014-07-18 16:18:13 +00:00
border-radius: 5px;
width: 10px;
2014-11-07 13:37:02 +00:00
color: #a9bcc4;
2014-07-18 16:18:13 +00:00
background: #a9bcc4;
}
2014-11-07 13:37:02 +00:00
.stat-widget .secondary {
2014-07-18 16:18:13 +00:00
opacity: .38;
2014-11-07 13:37:02 +00:00
color: #a9bcc4;
background: #a9bcc4;
}
.stat-legend {
margin-top: 30px;
margin-left: auto;
display: flex;
2014-11-07 13:37:02 +00:00
}
.stat-legendEntry {
font-size: 11px;
line-height: 1;
margin-left: 20px;
background: none !important;
2014-07-18 16:18:13 +00:00
}
2014-11-07 13:37:02 +00:00
.stat-circle {
margin-bottom: -1px;
margin-right: 3px;
2014-11-07 13:37:02 +00:00
width: 10px;
height: 10px;
border-radius: 100%;
display: inline-block;
}
.frequency.stat-widget {
.stat-bars {
margin-top: 0;
}
.stats-row {
margin-bottom: 0;
}
.stat-label {
color: #a1a4a7;
}
.primary {
color: hsl(145,51%,45%);
background: hsl(145,51%,45%);
}
}
2014-07-18 16:18:13 +00:00
.activity.sidebar {
2014-07-23 22:13:40 +00:00
width: 370px;
padding: 0;
2014-07-18 16:18:13 +00:00
border-left: 1px solid #e8e8e8;
}
2014-07-23 22:13:40 +00:00
.activity h2 {
margin-left: 19px;
2014-07-23 22:13:40 +00:00
margin-bottom: 15px;
margin-right: 26px;
}
.activity-entry {
display: flex;
&.is-inactive {
opacity: 0.5;
}
2014-07-23 22:13:40 +00:00
}
.activity-avatar {
padding: 16px 2px 0;
margin-right: 10px;
flex-shrink: 0;
2014-07-23 22:13:40 +00:00
}
.activity-body {
color: #444a4f;
padding: 16px 0 16px 2px;
position: relative;
display: flex;
flex: 1;
2015-06-11 14:06:02 +00:00
min-width: 0; /* Firefox wrong content-calculation with word-wrap workaround */
}
.activity-entry:not(:last-child) .activity-body:after {
content: "";
position: absolute;
bottom: 0;
right: 30px;
left: 0;
border-bottom: 1px solid #f2f2f3;
}
.activity-body:hover {
color: #444a4f;
text-decoration: none;
2014-07-23 22:13:40 +00:00
}
.activity-body:hover .activity-text {
text-decoration: underline;
}
2014-07-23 22:13:40 +00:00
.activity-message {
flex: 1;
2015-06-11 14:06:02 +00:00
min-width: 0; /* Firefox wrong content-calculation with word-wrap workaround */
2014-07-23 22:13:40 +00:00
}
.activity-time {
margin-top: 2px;
color: #a1a4a7;
display: block;
2014-07-23 22:13:40 +00:00
}
.activity .priority.icon:after {
background: white;
}
2014-11-14 15:44:59 +00:00
.form-inline {
display: flex;
2014-11-14 15:44:59 +00:00
}
2014-08-05 13:05:11 +00:00
.form-inline .input-group-addon,
2014-09-19 11:39:56 +00:00
.form-inline .form-control:not(textarea) {
2014-08-05 13:05:11 +00:00
background: white;
border: none;
line-height: 1;
}
.form-inline .form-group {
overflow: hidden;
2014-08-29 15:09:20 +00:00
position: relative;
2014-08-30 09:39:23 +00:00
height: 60px;
flex: 1 1 auto;
2014-08-06 17:36:45 +00:00
}
2014-11-14 15:44:59 +00:00
.attributeBar.form-inline .form-group:last-child {
flex: 0 1 auto;
2014-08-29 20:35:23 +00:00
}
.form-group.is-changed {
position: relative;
}
.form-group.is-changed:before {
content: "";
position: absolute;
top: 23px;
left: -16px;
bottom: 0;
width: 3px;
background: repeating-linear-gradient(45deg, hsl(193,18%,90%), hsl(193,18%,90%) 5px, transparent 5px, transparent 9px) repeat center;
background-size: 11px 11px;
}
.form-inline .form-group.is-changed:before {
width: 100%;
height: 3px;
top: 0;
left: 0;
bottom: auto;
}
.form-group.is-changed label {
color: hsl(198,19%,72%);
position: relative;
}
.form-group.is-changed label:before {
position: absolute;
content: '';
left: -10px;
width: 5px;
height: 5px;
top: 50%;
margin-top: -3px;
border-radius: 100%;
background: hsl(198,19%,72%);
}
2014-08-06 17:36:45 +00:00
.form-inline .form-group .btn {
2014-08-29 20:35:23 +00:00
margin: 10px;
2014-08-05 13:05:11 +00:00
}
2014-09-19 11:39:56 +00:00
.form-inline .form-group:not(:last-child),
.form-inline.form-inline--enclosed .form-group {
2014-08-05 13:05:11 +00:00
border-right: 1px solid #f0f0f0;
}
.form-inline .input-group-addon {
width: auto;
2014-08-29 15:09:20 +00:00
padding: 0;
2014-08-30 09:39:23 +00:00
margin: 10px 18px 0;
2014-08-05 13:05:11 +00:00
font-size: 13px;
letter-spacing: 0.05em;
color: #ccc;
display: inline-block;
position: relative;
2014-08-05 13:05:11 +00:00
}
2014-09-19 11:39:56 +00:00
.form-inline .form-control:not(textarea) {
2014-08-29 15:09:20 +00:00
width: 100%;
height: 100%;
left: 0;
top: 0;
position: absolute;
2014-10-07 15:28:24 +00:00
padding: 28px 18px 12px;
2014-08-06 23:17:26 +00:00
float: none;
display: block;
2014-08-05 13:05:11 +00:00
border-radius: 0;
2014-08-29 15:09:20 +00:00
background: none;
2014-08-05 13:05:11 +00:00
}
.bulkAction-secondStep .form-group {
min-width: 140px;
}
.bulkAction-secondStep .form-inline .textarea.form-group {
2014-10-08 10:06:36 +00:00
padding: 5px 10px;
2014-09-19 11:39:56 +00:00
height: auto;
}
.bulkAction-secondStep .form-inline .textarea.form-group .input-group-addon {
margin-left: 8px;
margin-right: 8px;
2014-09-19 11:39:56 +00:00
margin-bottom: 5px;
}
.bulkAction-secondStep .form-inline textarea.form-control {
2014-09-19 11:39:56 +00:00
display: block;
padding-left: 8px;
padding-right: 8px;
2014-09-19 11:39:56 +00:00
width: 100%;
resize: vertical;
2014-10-08 10:06:36 +00:00
}
.bulkAction-secondStep .form-inline textarea.form-control:not(:focus) {
border-color: #f0f0f0;
2014-09-19 11:39:56 +00:00
}
.ticketZoom {
2014-08-07 21:53:46 +00:00
background: #f8f9fa;
}
2015-03-10 20:11:36 +00:00
.ticketZoom-controls {
display: flex;
justify-content: flex-end;
align-items: center;
2015-06-02 18:23:02 +00:00
padding: 28px 0 0 0;
2015-03-10 20:11:36 +00:00
}
2015-06-02 16:21:14 +00:00
.icon-marker {
fill: hsl(0,0%,61%);
width: 17px;
height: 19px;
}
2015-06-02 18:23:02 +00:00
.ticketZoom .ticketZoom-header {
margin-top: 6px;
2014-10-01 11:57:36 +00:00
padding: 0;
}
.ticketZoom .ticket-article {
margin-top: 55px;
2014-08-05 15:31:26 +00:00
}
2015-02-20 23:17:49 +00:00
.ticketZoom > .overview-navigator {
margin-top: 32px;
padding-left: 20px;
}
2015-01-12 14:34:28 +00:00
.ticket-article,
2015-04-05 22:36:21 +00:00
.article-new {
2015-01-12 14:34:28 +00:00
max-width: 800px;
margin: 0 auto;
padding: 0 21px;
}
2014-08-05 15:31:26 +00:00
.ticket-title {
2014-10-07 07:59:34 +00:00
max-width: 800px;
padding: 0 81px;
2014-08-05 15:31:26 +00:00
}
2014-12-17 22:02:09 +00:00
.ticket-title-update {
@extend h1;
2014-12-17 22:02:09 +00:00
white-space: normal;
margin-top: 15px;
margin-bottom: 8px;
text-align: center;
2014-12-17 22:02:09 +00:00
}
2014-08-25 16:32:39 +00:00
.task-subline {
2014-08-19 07:23:26 +00:00
text-align: center;
2014-08-25 16:32:39 +00:00
display: block;
2014-08-05 15:31:26 +00:00
}
2014-08-27 10:45:21 +00:00
.ticket-article-item {
padding-bottom: 33px;
position: relative;
2015-01-12 14:34:28 +00:00
.avatar {
position: absolute;
right: 0;
top: 5px;
}
&.agent .avatar {
right: auto;
left: 0;
}
2014-08-27 10:45:21 +00:00
}
2014-12-28 15:28:52 +00:00
/*
clip the article-meta to not stand out on the other side
2015-01-15 00:04:07 +00:00
of the textBubble if the text bubble is small
2014-08-27 10:45:21 +00:00
*/
2014-08-06 17:36:45 +00:00
2014-08-27 10:45:21 +00:00
.article-meta-clip {
overflow: hidden;
2014-08-26 14:38:26 +00:00
position: relative;
2014-08-27 10:45:21 +00:00
height: 100%;
2015-01-12 14:34:28 +00:00
margin: 0 55px;
}
2014-08-27 10:45:21 +00:00
2014-08-25 16:32:39 +00:00
.article-content {
2015-05-27 14:55:08 +00:00
color: hsl(60,1%,34%);
position: relative;
2015-01-12 14:34:28 +00:00
padding: 0 55px;
2014-08-25 16:32:39 +00:00
}
2014-08-27 10:45:21 +00:00
.article-content-meta {
2014-08-26 14:38:26 +00:00
position: absolute;
2014-08-27 10:45:21 +00:00
width: 100%;
}
2014-08-26 14:38:26 +00:00
2014-08-25 16:32:39 +00:00
.article-meta {
background: #2c2d36;
color: white;
padding: 21px 25px 11px;
margin: 0 12px;
}
.article-meta.bottom {
padding-top: 17px;
padding-bottom: 8px;
}
.article-meta-row {
margin-bottom: 5px;
}
.article-meta-key {
2015-01-12 14:34:28 +00:00
width: 20%;
2014-08-25 16:32:39 +00:00
text-transform: uppercase;
}
.article-meta-value {
margin-left: 8px;
}
.article-meta-icon {
width: 16px;
height: 16px;
fill: white;
2014-08-26 14:38:26 +00:00
vertical-align: top;
margin: 2px 3px 0 0;
2014-08-25 16:32:39 +00:00
}
.article-meta .text-muted {
color: #96969b;
}
.internal-border {
padding: 5px;
border-radius: 8px;
margin: -5px;
}
.is-internal .internal-border {
background: repeating-linear-gradient(45deg, hsl(18,79%,89%), hsl(18,79%,89%) 5px, hsl(210,17%,98%) 5px, hsl(210,17%,98%) 6px);
background-size: 8px 8px;
}
.is-internal .bubble-arrow {
display: none;
}
2015-01-15 00:13:08 +00:00
.textBubble {
2014-08-05 15:31:26 +00:00
padding: 10px 20px;
background: white;
2014-08-27 10:45:21 +00:00
border-radius: 2px;
2014-08-05 15:31:26 +00:00
border: 1px solid hsl(240,4%,95%);
box-shadow: 0 0 1px rgba(0,0,0,.06) inset;
position: relative;
2015-01-15 00:13:08 +00:00
2015-01-09 11:53:44 +00:00
/* email css reset */
2015-01-15 00:13:08 +00:00
p {
margin: 0;
}
2015-01-15 00:13:08 +00:00
blockquote,
pre {
2015-01-09 11:53:44 +00:00
margin: 0px;
padding: 8px 12px 8px 12px;
}
2015-01-15 00:13:08 +00:00
}
2015-01-09 11:53:44 +00:00
2015-01-15 00:13:08 +00:00
.ticket-article-item.state--folde-out .textBubble {
border-color: hsl(0,0%,90%);
}
2015-01-09 11:53:44 +00:00
2015-01-15 00:13:08 +00:00
.textBubble-content {
overflow: hidden;
position: relative;
}
2015-01-15 00:26:19 +00:00
.textBubble-overflowContainer {
2015-01-15 00:13:08 +00:00
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: white;
2015-01-15 00:13:08 +00:00
.btn {
padding: 7px 0;
font-size: 10px;
2014-08-27 10:45:21 +00:00
}
2015-01-15 00:13:08 +00:00
&:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -30px;
height: 30px;
2015-01-20 01:57:08 +00:00
background: linear-gradient(rgba(255,255,255,0), white);
2015-01-15 00:13:08 +00:00
}
}
2015-01-15 00:26:19 +00:00
.customer .textBubble-overflowContainer {
2015-01-15 00:13:08 +00:00
background: #e5f0f5;
&:before {
2015-01-20 01:57:08 +00:00
background: linear-gradient(hsla(199,44%,93%,0), hsl(199,44%,93%));
2015-01-15 00:13:08 +00:00
}
}
.customer.ticket-article-item .textBubble {
2014-08-05 15:31:26 +00:00
background: #e5f0f5;
border-color: hsl(199,38%,92%);
box-shadow: none;
}
2015-01-15 00:13:08 +00:00
.customer.ticket-article-item.state--folde-out .textBubble {
2014-08-27 10:45:21 +00:00
border-color: hsl(199,44%,85%);
}
2014-08-06 17:36:45 +00:00
.bubble-arrow {
2014-08-05 15:31:26 +00:00
position: absolute;
width: 7px;
height: 9px;
left: -6px;
top: 15px;
overflow: hidden;
}
2014-08-06 17:36:45 +00:00
.bubble-arrow:after {
2014-08-05 15:31:26 +00:00
content: "";
position: absolute;
top: -1px;
left: 2px;
width: 11px;
height: 11px;
background: white;
2015-05-28 11:33:54 +00:00
border: 1px solid hsl(240,4%,95%);
2014-08-05 15:31:26 +00:00
box-shadow: 0 0 1px rgba(0,0,0,.06) inset;
transform: rotate(-45deg);
2014-08-05 15:31:26 +00:00
}
2014-08-06 17:36:45 +00:00
.customer.ticket-article-item .bubble-arrow {
2014-08-05 15:31:26 +00:00
left: auto;
right: -6px;
}
2014-08-06 17:36:45 +00:00
.customer.ticket-article-item .bubble-arrow:after {
2014-08-05 15:31:26 +00:00
background: #e5f0f5;
left: auto;
right: 2px;
border-color: hsl(199,38%,92%);
box-shadow: none;
}
2014-10-07 15:28:24 +00:00
.ticket-article-item .attachments:not(:empty) {
border-top: 1px solid rgba(0,0,0,.04);
2014-09-30 10:12:18 +00:00
white-space: normal;
margin: 0 -20px;
padding: 26px 20px 7px 72px;
position: relative;
}
.ticket-article-item .attachments h3 {
color: hsl(60,1%,34%);
letter-spacing: 0;
font-weight: bold;
padding: 0 7px;
margin: 0 0 4px;
}
2015-05-26 07:13:09 +00:00
.attachments .icon-paperclip {
2014-09-30 10:12:18 +00:00
position: absolute;
left: 33px;
top: 27px;
}
2014-08-25 16:32:39 +00:00
.ticket-article-item .task-subline {
2014-08-05 15:31:26 +00:00
margin-top: 12px;
2014-08-25 16:32:39 +00:00
}
2014-08-26 14:38:26 +00:00
.article-action {
2015-01-07 10:05:12 +00:00
padding-top: 5px;
margin-top: 5px;
2014-08-27 10:45:21 +00:00
color: black;
font-size: 12px;
text-align: center;
opacity: 0.5;
@extend .u-clickable;
2014-08-05 15:31:26 +00:00
}
2014-08-27 10:45:21 +00:00
.article-action:hover {
color: black;
text-decoration: none;
opacity: 1;
}
.article-action-icon {
margin-right: 5px;
vertical-align: top;
width: 17px;
height: 17px;
2014-08-26 14:38:26 +00:00
}
2015-01-12 14:34:28 +00:00
.article-add {
position: relative;
}
2015-04-05 22:36:21 +00:00
.article-new {
2014-08-06 23:17:26 +00:00
margin-top: auto;
margin-bottom: 36px;
2014-08-06 17:36:45 +00:00
}
.dropArea {
background: white;
border: 5px solid;
color: hsl(202,66%,55%);
font-size: 20px;
margin: 5px;
display: none;
2015-05-28 14:26:49 +00:00
@extend .fit;
}
2014-10-07 06:05:10 +00:00
.is-dropTarget .dropArea {
display: block;
}
2015-05-28 14:26:49 +00:00
.dropArea-inner {
@extend .fit;
display: flex;
align-items: center;
justify-content: center;
}
.shortcut .dropdown-menu > .active > a {
background: none;
}
.shortcut .dropdown-menu > .active {
background: hsl(145,51%,45%);
}
.editControls {
2015-01-12 14:34:28 +00:00
position: absolute;
left: 0;
top: 5px;
2014-09-04 00:54:33 +00:00
}
.article-add[data-type=email] .editControls {
top: 159px;
}
.editControls-item {
2014-09-02 14:35:50 +00:00
position: absolute;
top: 43px;
@extend .u-clickable, .zIndex-7;
&.is-hidden {
display: none;
}
2014-09-04 00:54:33 +00:00
}
.editControls-item:nth-child(3) {
top: 79px;
2014-09-04 00:54:33 +00:00
}
.editControls-item:nth-child(4) {
top: 115px;
2014-08-28 07:03:44 +00:00
}
.editControls-item:not(:last-child) {
2014-09-02 14:35:50 +00:00
border-bottom: 1px solid #e6e6e6;
2014-08-28 07:03:44 +00:00
}
.editControls-iconHolder {
width: 38px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
2014-08-27 16:36:32 +00:00
}
.editControls-icon {
width: 16px;
height: 16px;
fill: hsl(210,2%,78%);
2014-08-27 16:36:32 +00:00
}
.pop-selector {
2014-09-02 14:35:50 +00:00
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
&.is-hidden {
display: none;
}
2014-08-27 16:36:32 +00:00
}
.pop-selectable {
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
@extend .u-clickable;
background: hsl(240,9%,19%);
2014-08-28 14:59:52 +00:00
}
.pop-selectable:hover {
background: white;
2014-08-27 16:36:32 +00:00
}
.pop-selectable:first-child {
border-radius: 4px 0 0 4px;
2014-08-27 16:36:32 +00:00
}
.pop-selectable:last-child {
border-radius: 0 4px 4px 0;
2014-08-27 16:36:32 +00:00
}
.pop-selectable-icon {
fill: hsl(231,3%,40%);
}
.pop-selectable:hover .pop-selectable-icon {
fill: hsl(240,9%,19%);
}
.article-add .icon-internal {
fill: hsl(18,87%,65%);
}
.article-add.is-public .icon-internal,
.article-add.is-internal .icon-public {
display: none;
2014-08-27 16:36:32 +00:00
}
2015-04-05 22:36:21 +00:00
.article-new .recipient-picker {
height: 36px;
2014-08-28 14:59:52 +00:00
position: relative;
2014-08-29 13:01:38 +00:00
transition: 300ms;
2014-08-28 14:59:52 +00:00
}
2015-04-05 22:36:21 +00:00
.article-new .recipient-picker.is-open {
2014-08-28 14:59:52 +00:00
opacity: 1;
}
.recipient-picker .icon {
2014-09-02 14:35:50 +00:00
margin-top: -2px;
2014-08-28 14:59:52 +00:00
}
.recipient-count {
margin-left: 3px;
2014-09-02 14:35:50 +00:00
margin-top: 1px;
2014-08-28 14:59:52 +00:00
line-height: 1;
}
.recipient-list {
position: absolute;
background: hsl(234,10%,19%);
left: 48px;
color: white;
}
.recipient-picker.is-open .recipient-list {
2014-08-28 14:59:52 +00:00
display: block;
}
.list-arrow {
position: absolute;
top: 210px;
left: -6px;
margin-top: -6px;
border-right: 6px solid #2c2d36;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
}
.list-head {
height: 38px;
line-height: 38px;
padding: 1px 19px 0;
text-transform: uppercase;
}
.list-head div {
position: relative;
left: -20px;
}
.list-entry {
width: 340px;
height: 60px;
padding: 0 16px;
border-top: 1px solid hsl(240,6%,27%);
}
.list-entry-name {
margin-left: 18px;
}
.list-entry-type {
font-size: 12px;
}
.list-entry-type div {
padding: 3px 7px;
border: 1px solid hsl(234,10%,10%);
color: hsl(0,0%,40%);
background: hsl(234,10%,14%);
}
.list-entry-type .active {
color: white;
background: inherit;
box-shadow: 0 1px rgba(255,255,255,.03) inset;
}
.list-entry-type div:not(:last-child) {
border-right: none;
}
.list-entry-type div:first-child {
border-radius: 3px 0 0 3px;
}
.list-entry-type div:last-child {
border-left: none;
border-radius: 0 3px 3px 0;
}
.recipient-list input {
padding-top: 2px;
background: hsl(232,10%,16%);
color: white;
border: none;
outline: none;
}
.recipient-list input[type=submit] {
height: 0;
width: 0;
padding: 0;
position: absolute;
visibility: hidden;
}
2015-06-10 10:37:44 +00:00
.recipient-list input::placeholder {
color: #666;
}
2014-08-28 14:59:52 +00:00
2015-04-05 22:36:21 +00:00
.article-new .textBubble {
2014-08-28 07:03:44 +00:00
border-color: #b3b3b3;
border-radius: 5px;
2014-10-07 13:59:21 +00:00
padding-left: 12px;
padding-right: 12px;
2014-08-28 07:03:44 +00:00
}
2015-04-05 22:36:21 +00:00
.article-new .textBubble [contenteditable],
.article-new textarea,
.articleNewEdit-body {
2014-08-28 07:03:44 +00:00
width: 100%;
2014-10-02 06:37:24 +00:00
position: relative;
min-height: 20px;
2014-08-28 07:03:44 +00:00
vertical-align: bottom;
border: none;
background: none;
outline: none;
2014-09-04 00:54:33 +00:00
resize: none;
2014-08-28 07:03:44 +00:00
}
2015-04-05 22:36:21 +00:00
.articleNewEdit-body {
height: auto;
min-height: 38px;
}
2015-05-28 11:33:54 +00:00
.article-new .bubble-arrow:after {
2014-08-28 07:03:44 +00:00
border-color: #b3b3b3;
box-shadow: none;
}
2014-09-04 00:54:33 +00:00
.article-attachment {
position: absolute;
2014-10-06 13:49:46 +00:00
bottom: -4px;
2014-09-04 00:54:33 +00:00
left: 10px;
right: 10px;
2014-10-06 13:49:46 +00:00
height: 42px;
2014-09-04 00:54:33 +00:00
padding: 10px 0;
color: #b3b3b3;
2014-10-05 10:52:28 +00:00
overflow: hidden;
2015-05-28 14:26:49 +00:00
@extend .u-unclickable, .u-textTruncate;
2014-09-04 00:54:33 +00:00
}
2014-10-07 13:59:21 +00:00
.attachments:not(:empty) {
padding: 9px 5px;
border-top: 1px solid hsl(0,0%,93%);
2014-10-07 13:59:21 +00:00
margin: 6px -12px 30px;
}
.attachment {
font-size: 13px;
2014-09-30 10:12:18 +00:00
padding: 1px 10px 1px 7px;
cursor: default;
2015-01-29 16:05:26 +00:00
position: relative;
2015-05-28 14:26:49 +00:00
display: flex;
}
.attachment:hover {
background: hsl(200,20%,97%);
}
.attachment-name {
margin-right: 5px;
min-width: 0;
2015-05-28 14:26:49 +00:00
@extend .u-highlight;
}
.attachment-size {
white-space: nowrap;
float: right;
margin-right: 10px;
}
.attachment-delete {
color: hsl(198,19%,72%);
text-decoration: underline;
display: none;
white-space: nowrap;
2015-05-28 14:26:49 +00:00
margin-left: auto;
2015-06-12 09:49:23 +00:00
cursor: pointer;
user-select: none;
}
.attachment:hover .attachment-delete {
2015-01-29 16:05:26 +00:00
padding: 0 10px 0 30px;
float: right;
display: block;
2015-01-29 16:05:26 +00:00
position: absolute;
right: 0;
background: linear-gradient(to right, hsla(200,20%,97%,0), hsla(200,20%,97%,1) 20px);
}
.attachment-delete .icon {
2015-05-28 14:26:49 +00:00
fill: hsl(198,18%,72%);
width: 9px;
height: 9px;
margin-right: 5px;
}
.attachmentPlaceholder-inputHolder {
2014-09-04 00:54:33 +00:00
position: relative;
display: inline-block;
overflow: hidden;
vertical-align: bottom;
2015-06-12 09:49:23 +00:00
pointer-events: auto;
@extend .u-highlight;
2014-08-28 07:03:44 +00:00
}
.attachmentUpload {
color: hsl(198,19%,72%);
}
.attachmentUpload-cancel {
2015-05-28 14:26:49 +00:00
@extend .u-clickable;
margin-left: auto;
text-decoration: underline;
}
2015-05-28 14:26:49 +00:00
.attachmentUpload .icon {
fill: hsl(198,18%,72%);
width: 9px;
height: 9px;
margin-right: 5px;
}
.attachmentUpload-progressBar {
position: absolute;
height: 4px;
background: hsl(202,66%,55%);
left: 0;
2014-10-06 13:49:46 +00:00
bottom: 0;
}
2014-10-01 11:57:36 +00:00
.tabsSidebar-tabsSpacer {
padding-right: 62px !important;
2014-10-01 11:57:36 +00:00
}
.tabsSidebar-sidebarSpacer {
margin-right: $sidebarWidth;
2014-10-01 11:57:36 +00:00
transition: margin 500ms;
}
2014-10-01 11:57:36 +00:00
.tabsSidebar-sidebarSpacer.is-closed {
margin-right: 0;
}
.tabsSidebar-holder {
overflow: hidden;
position: relative;
flex: 1;
display: flex;
flex-direction: column;
}
.tabsSidebar .sidebar {
width: $sidebarWidth;
2014-08-07 21:53:46 +00:00
border-left: 1px solid #e6e6e6;
padding: 0;
2014-08-07 21:53:46 +00:00
}
.tabsSidebar .sidebar > hr {
margin: 20px;
}
.tabsSidebar .sidebar-header {
display: flex;
align-content: stretch;
position: relative;
margin: 0 20px;
+ hr {
margin-top: 0;
}
2014-08-07 21:53:46 +00:00
}
2014-11-17 15:08:24 +00:00
.sidebar-header-headline {
padding: 33px 0 17px 25px;
margin: 0 0 0 -20px;
line-height: 1;
padding-right: 8px;
@extend .u-clickable, .u-textTruncate;
}
.sidebar-header-actions {
flex: 1;
margin-right: 5px;
display: flex;
align-items: center;
.dropdown {
flex: 1;
position: static;
}
.dropdown-toggle {
padding-top: 38px;
padding-bottom: 24px;
}
}
.tabsSidebar-close {
padding: 27px 35px 12px 0;
margin: 0 -20px 0 0;
@extend .u-clickable;
display: flex;
align-items: center;
justify-content: center;
.icon {
fill: black;
}
2014-08-07 21:53:46 +00:00
}
.tabsSidebar .sidebar-content {
padding: 0 20px 20px;
}
2014-08-07 21:53:46 +00:00
.sidebar.bottom-form-shadow {
box-shadow:
0 -1px rgba(0,0,0,.005) inset,
0 -2px rgba(0,0,0,.005) inset,
0 -3px rgba(0,0,0,.005) inset,
0 -4px rgba(0,0,0,.005) inset;
}
.tabsSidebar {
2014-08-07 21:53:46 +00:00
position: absolute;
right: 0;
top: 0;
2014-12-16 14:07:50 +00:00
bottom: 0;
2014-08-07 21:53:46 +00:00
transition: 500ms;
2014-12-16 14:07:50 +00:00
&.tabsSidebar--attributeBarSpacer {
bottom: 60px;
}
2014-08-07 21:53:46 +00:00
}
.tabsSidebar.is-closed {
transform: translateX($sidebarWidth);
2014-08-07 21:53:46 +00:00
}
.tabsSidebar-tabs {
2014-08-07 21:53:46 +00:00
position: absolute;
left: -55px;
top: 0;
bottom: 0;
pointer-events: none;
2014-08-07 21:53:46 +00:00
}
.test {
position: absolute;
width: 100%;
}
.tabsSidebar-tab {
2014-08-07 21:53:46 +00:00
width: 56px;
height: 60px;
background: hsl(197,20%,93%);
position: relative;
border-top: 1px solid hsl(202,12%,87%);
@extend .u-clickable;
pointer-events: auto;
display: flex;
align-items: center;
justify-content: center;
2014-08-07 21:53:46 +00:00
}
.tabsSidebar-tab.is-changed:before {
position: absolute;
content: '';
left: -3px;
width: 6px;
height: 6px;
top: 50%;
margin-top: -3px;
border-radius: 100%;
background: hsl(198,19%,72%);
box-shadow: 0 0 0 2px hsl(210,17%,98%);
}
.tabsSidebar-tab:first-child {
2014-08-07 21:53:46 +00:00
border-top-left-radius: 8px;
border-top: none;
2014-08-07 21:53:46 +00:00
}
.tabsSidebar-tab:last-child {
2014-08-07 21:53:46 +00:00
border-bottom-left-radius: 8px;
}
.tabsSidebar-tab .icon {
2015-05-07 17:27:53 +00:00
width: 24px;
height: 24px;
fill: hsl(197,19%,78%);
2014-08-07 21:53:46 +00:00
}
.tabsSidebar-tab.active .icon {
2015-05-07 17:27:53 +00:00
fill: hsl(206,7%,37%);
2014-08-07 21:53:46 +00:00
}
2014-08-30 10:24:31 +00:00
.sidebar .text-muted {
color: hsl(198,19%,72%);
2014-08-30 10:24:31 +00:00
}
.alert {
padding: 10px 15px;
border-radius: 3px;
2015-05-28 11:33:54 +00:00
color: hsl(202,5%,18%);
&.alert--info {
border-color: hsl(188,50%,72%);
background: hsl(191,53%,79%);
}
&.alert--success {
border-color: hsl(145,51%,70%);
background: hsl(145,51%,77%);
}
&.alert--warning {
border-color: hsl(43,92%,71%);
background: hsl(42,94%,80%);
}
&.alert--danger {
border-color: hsl(9,72%,62%);
background: hsl(12,73%,66%);
}
}
2015-05-28 14:21:31 +00:00
.tags,
.links {
margin: 20px 0;
2014-08-30 10:24:31 +00:00
}
2015-05-28 14:21:31 +00:00
.sidebar-list {
2014-08-30 10:24:31 +00:00
padding: 0;
margin-bottom: 5px;
}
2015-05-28 14:21:31 +00:00
.sidebar-list-title {
margin-top: 7px;
margin-bottom: 4px;
text-transform: uppercase;
color: hsl(198,19%,84%);
display: block;
font-size: 12px;
font-weight: normal;
letter-spacing: 0.1em;
2015-05-28 14:21:31 +00:00
}
.sidebar-list-item {
2015-05-28 13:27:44 +00:00
display: flex;
align-items: center;
color: hsl(206,7%,28%);
2014-08-30 10:24:31 +00:00
border-bottom: 1px solid hsl(240,4%,95%);
}
2015-05-28 14:21:31 +00:00
.sidebar-list-item-name {
2015-05-28 13:27:44 +00:00
flex: 1;
padding: 4px 1px;
2015-05-28 13:27:44 +00:00
}
2015-05-28 14:21:31 +00:00
.sidebar-list-item-delete {
2014-08-30 10:24:31 +00:00
padding: 0 10px;
margin-right: -3px;
2015-05-28 13:27:44 +00:00
display: flex;
align-items: center;
justify-content: center;
align-self: stretch;
2015-05-28 13:27:44 +00:00
@extend .u-clickable;
.icon {
width: 9px;
height: 9px;
fill: hsl(0,0%,82%);
}
2014-08-30 10:24:31 +00:00
}
2015-05-28 14:21:31 +00:00
.sidebar-list-item-delete:hover .icon {
2015-05-28 13:27:44 +00:00
fill: hsl(1,77%,47%);
2014-08-30 10:24:31 +00:00
}
2015-05-28 14:21:31 +00:00
.ticket-id {
color: white;
background: hsl(198,19%,72%);
font-size: 11px;
border-radius: 7px;
padding: 0 5px;
margin-right: 2px;
}
2014-11-14 15:44:59 +00:00
.attributeBar {
height: 60px;
background: white;
transition: margin 250ms;
flex-shrink: 0;
2014-11-14 15:44:59 +00:00
&.is-closed {
margin-bottom: -60px;
}
}
.newTicket {
2015-05-27 12:21:56 +00:00
padding: 14px 34px;
2014-09-04 21:56:58 +00:00
}
.newTicket .sidebar {
width: 290px;
}
.newTicket .form-control:not(:focus):not(.focus) {
border-color: hsl(0,0%,90%);
}
.newTicket .subtle-link {
color: hsl(0,0%,89%);
}
2014-11-14 10:15:00 +00:00
.newTicket .article-form-top {
margin-top: 15px;
}
2014-09-04 21:56:58 +00:00
.box {
background: white;
2015-05-27 12:21:56 +00:00
margin: 20px 0;
2014-09-04 21:56:58 +00:00
border: 1px solid #e6e6e6;
2015-05-27 12:21:56 +00:00
padding: 20px 24px;
2014-09-04 21:56:58 +00:00
}
2015-05-27 12:21:56 +00:00
.box.box--newTicket {
max-width: 658px;
margin-left: auto;
margin-right: auto;
}
2014-09-04 21:56:58 +00:00
.box .page-header {
text-align: center;
2015-05-27 12:21:56 +00:00
margin-bottom: 12px;
2014-09-04 21:56:58 +00:00
}
.box h1 {
2015-05-27 12:21:56 +00:00
margin-top: 12px;
2014-09-04 21:56:58 +00:00
color: hsl(60,1%,34%);
}
2015-05-27 12:21:56 +00:00
.box h2 {
margin-top: 12px;
}
2014-09-04 21:56:58 +00:00
.box .two-columns {
margin-left: -4px;
margin-right: -4px;
}
.box .two-columns .column {
margin-left: 4px;
margin-right: 4px;
width: calc(50% - 8px);
}
2015-05-27 12:21:56 +00:00
.box-controls {
margin-top: 20px;
display: flex;
align-items: center;
}
.box--yellow {
background: hsl(47,100%,93%);
border-color: hsl(47,100%,75%);
color: hsl(47,20%,67%);
h1, h2 {
color: hsl(47,3%,28%);
}
}
.box-progress {
display: flex;
align-items: center;
justify-content: center;
}
.box-progress-title {
color: hsl(47,3%,28%);
}
.box-progress-body {
flex: 1;
margin-left: 24px;
display: flex;
align-items: center;
justify-content: center;
progress {
width: 100%;
}
}
2014-09-04 21:56:58 +00:00
.formset-inset {
2014-11-14 10:15:00 +00:00
margin: 34px -24px 24px;
padding: 19px 24px 24px;
2014-09-04 21:56:58 +00:00
background: hsl(197,20%,93%);
border-top: 1px solid hsl(0,0%,90%);
border-bottom: 1px solid hsl(0,0%,90%);
}
.type-tabs .tab {
line-height: 42px;
padding: 0 12px 0 12px;
list-style: none;
2014-09-04 21:56:58 +00:00
}
.type-tabs .tab-icon {
width: 16px;
height: 16px;
fill: #ccc;
2014-09-04 21:56:58 +00:00
vertical-align: top;
margin-right: 9px;
margin-top: 11px;
transform: scale(1.2);
2014-09-04 21:56:58 +00:00
}
.type-tabs .tab.active .tab-icon {
fill: white;
}
2014-09-04 21:56:58 +00:00
.tokenfield .token {
padding: 0 0 0 10px;
2015-05-27 07:23:16 +00:00
margin: 0 5px 8px 0;
2014-09-04 21:56:58 +00:00
height: 26px;
line-height: 27px;
color: white;
background: hsl(198,19%,72%);
border: none;
float: none;
2015-05-27 07:23:16 +00:00
display: inline-flex;
align-items: center;
2014-09-04 21:56:58 +00:00
}
.tokenfield .token-input {
vertical-align: top;
margin: 2px 0 0 5px;
2014-11-14 10:15:00 +00:00
height: 25px;
2014-09-04 21:56:58 +00:00
}
.tokenfield .token .token-label {
padding: 0;
2014-09-04 21:56:58 +00:00
}
.tokenfield.form-control {
padding-top: 8px;
}
.tokenfield .token .close {
margin: 0;
2015-05-27 07:23:16 +00:00
padding: 0 9px 0 5px;
2014-09-04 21:56:58 +00:00
font-family: inherit;
font-weight: 300;
2014-09-04 21:56:58 +00:00
font-size: 30px;
line-height: 1;
color: white;
text-shadow: none;
opacity: .3;
outline: none;
2015-05-27 07:23:16 +00:00
height: auto;
2014-09-04 21:56:58 +00:00
}
.tokenfield .token .close:hover {
opacity: .5;
}
.drox {
color: hsl(60,1%,74%);
}
.drox .drox-header {
padding-bottom: 2px;
margin-bottom: 16px;
border-bottom: 1px solid hsl(240,4%,95%);
}
.drox a.create {
margin-top: 2px;
display: inline-block;
}
.drox .form-group {
margin-bottom: 22px;
}
.drox .drox-body p:first-child {
margin-top: 20px;
}
.newTicket .templates {
border-bottom: 1px solid hsl(240,4%,95%);
padding-bottom: 14px;
}
.template-attributes {
margin: 17px 0 19px;
}
.template-attribute {
height: 24px;
line-height: 25px;
padding-left: 10px;
margin-bottom: 2px;
font-size: 13px;
color: hsl(198,11%,59%);
background: hsl(197,20%,93%);
border: 1px solid hsl(0,0%,90%);
border-radius: 3px;
}
.template-attribute .key {
text-transform: uppercase;
margin-right: 3px;
}
.template-attribute .value {
margin-left: 3px;
}
.template-attribute .delete {
padding: 0 7px;
margin-top: 4px;
line-height: 19px;
font-size: 28px;
font-weight: 300;
opacity: .4;
}
.customer-name {
color: hsl(60,1%,34%);
}
.customer-email {
margin-top: 5px;
margin-bottom: 20px;
display: block;
}
.table.user-list {
2015-06-09 19:20:55 +00:00
2015-06-09 15:47:44 +00:00
tr:hover .switchView {
visibility: visible;
}
.switchView {
visibility: hidden;
display: block;
text-overflow: ellipsis;
overflow: hidden;
}
// lame hardcoded width of this "View from users' perspective" button td
// i can't find another way to do it. It's not flexible. It sucks
.actionCell {
width: 250px;
2015-06-09 15:47:44 +00:00
}
}
2015-05-07 17:27:53 +00:00
.switchBackToUser {
display: flex;
align-items: center;
2014-09-15 21:59:21 +00:00
background: hsl(200,87%,45%);
color: #fff;
2014-09-15 21:59:21 +00:00
height: 45px;
padding: 0 17px;
/*top: -45px !important;*/
2014-09-15 21:59:21 +00:00
border-bottom: 5px solid hsl(205,90%,60%);
2015-05-07 17:27:53 +00:00
}
.switchBackToUser-icon {
width: 19px;
height: 18px;
}
2014-09-15 21:59:21 +00:00
.switchBackToUser-text {
margin-left: 10px;
}
.switchBackToUser-close {
width: 40px;
height: 40px;
margin-right: -10px;
display: flex;
align-items: center;
justify-content: center;
2015-05-07 17:27:53 +00:00
svg {
2015-05-07 17:27:53 +00:00
fill: white;
}
2014-09-15 21:59:21 +00:00
}
2014-10-29 19:43:56 +00:00
.modal {
position: fixed;
2015-06-11 13:53:45 +00:00
z-index: 1000;
2014-10-29 19:43:56 +00:00
}
2014-09-16 08:15:57 +00:00
.modal-dialog {
2014-10-29 19:43:56 +00:00
width: auto;
max-width: 660px;
2014-09-16 08:15:57 +00:00
margin-top: 35px;
margin-bottom: 35px;
}
2014-10-29 19:43:56 +00:00
.modal-backdrop {
position: fixed;
}
2014-09-16 08:15:57 +00:00
.modal-content {
border-radius: 0;
border: 1px solid hsl(0,0%,90%);
box-shadow: none;
2015-06-08 09:16:08 +00:00
color: hsl(60,1%,34%);
2014-09-16 08:15:57 +00:00
}
.modal-header {
padding: 30px 23px 23px;
border: none;
}
.modal-header h1 {
text-align: center;
}
.modal-close {
padding: 23px;
position: absolute;
right: 0;
top: 0;
@extend .u-clickable;
2014-09-16 08:15:57 +00:00
}
.modal-close .icon-diagonal-cross {
2014-09-16 08:15:57 +00:00
opacity: 0.18;
}
.modal-body {
padding: 0 23px;
}
.modal-footer {
padding: 23px 23px 20px;
border: none;
}
.modal-leftFooter,
.modal-centerFooter,
.modal-rightFooter {
display: flex;
align-items: start;
flex: 1;
}
.modal.modal--local {
display: block;
padding-left: 40px;
position: absolute;
bottom: auto;
min-height: 100vh;
.modal-backdrop {
position: absolute;
background: hsla(210,17%,93%,.55);
height: 100% !important;
opacity: 1;
}
.modal-dialog {
box-shadow: 0 0 40px hsla(210,17%,40%,.34);
}
}
2014-09-16 10:21:58 +00:00
.caret {
position: absolute;
top: 50%;
margin-top: -3px;
right: 10px;
}
.dropdown-menu {
2014-09-16 10:21:58 +00:00
margin: 0;
padding: 0;
2014-11-07 13:37:02 +00:00
min-width: 100%;
2015-05-28 10:00:03 +00:00
color: hsl(198,19%,72%);
2015-03-10 20:11:36 +00:00
text-transform: initial;
letter-spacing: 0;
2014-11-14 10:15:00 +00:00
background: hsl(234,10%,19%);
2014-09-16 10:21:58 +00:00
border-radius: 0;
border: none;
box-shadow: none;
2015-03-13 13:41:46 +00:00
overflow: hidden;
2014-09-16 10:21:58 +00:00
}
2014-11-07 13:37:02 +00:00
.dropdown-toggle {
display: flex;
align-items: center;
2014-11-07 13:37:02 +00:00
@extend .u-clickable;
}
.dropdown-icon {
width: 16px;
height: 16px;
opacity: 0.39;
}
.dropdown-menu.dropdown-menu--light {
background: white;
}
.dropdown-menu.dropdown-menu--light > li > a {
color: hsl(202,70%,49%);
}
.dropdown-menu.dropdown-menu--light > li > a:hover {
color: #2594d4;
background: rgba(0,0,0,.05);
}
.dropdown-menu.dropdown-menu--light li:hover,
.dropdown-menu.dropdown-menu--light li.is-active {
background: none;
}
.dropdown ul {
2014-09-16 10:21:58 +00:00
margin: 0;
}
2015-05-28 10:00:03 +00:00
.dropdown li,
.dropup li {
height: 39px;
line-height: 39px;
padding: 0 15px;
2014-09-16 10:21:58 +00:00
}
.dropdown li:not(:first-child) {
2014-09-16 10:21:58 +00:00
box-shadow: 0 1px rgba(255,255,255,.13) inset;
}
.dropdown li:hover,
.dropdown li.is-active {
2014-09-16 10:21:58 +00:00
background: hsl(205,90%,60%);
}
.dropdown li:not(.recipientList-controls):hover + li,
.dropdown li.is-active + li {
2014-09-16 10:21:58 +00:00
box-shadow: none;
}
2014-09-24 14:03:23 +00:00
.dropdown-menu > li > a {
color: white;
2015-05-28 10:00:03 +00:00
padding: 0 15px;
margin: 0 -15px;
line-height: inherit;
2014-09-24 14:03:23 +00:00
}
.dropdown-menu > li > a:hover {
color: white;
background: hsl(205,90%,60%);
}
2014-10-08 09:09:21 +00:00
.dropdown-menu > li > a span {
display: block;
}
2015-03-10 20:11:36 +00:00
.dropdown.dropdown--actions {
li {
display: flex;
align-items: center;
2015-03-10 20:11:36 +00:00
}
2014-09-24 14:03:23 +00:00
2015-03-10 20:11:36 +00:00
.dropdown-iconSpacer,
.dropdown-activeSpacer {
display: flex;
align-items: center;
2015-03-10 20:11:36 +00:00
}
.dropdown-iconSpacer {
width: 25px;
}
.dropdown-activeSpacer {
width: 34px;
margin-left: auto;
justify-content: flex-end;
2015-03-10 20:11:36 +00:00
}
a {
@extend .u-clickable;
display: flex;
2015-06-02 09:11:48 +00:00
flex: 1;
padding: 0 18px;
2015-03-10 20:11:36 +00:00
}
2014-11-07 13:37:02 +00:00
}
2015-05-28 10:00:03 +00:00
li.dropdown-header {
line-height: 36px;
height: 32px;
}
2014-09-18 10:40:17 +00:00
.recipientList,
.recipientList-organizationMembers {
2014-09-18 10:40:17 +00:00
list-style: none;
padding: 0;
}
2014-09-16 10:21:58 +00:00
.recipientList-entry {
@extend .u-clickable;
display: flex;
align-items: center;
}
2014-09-18 10:40:17 +00:00
.recipientList-entry .recipientList-iconSpacer {
width: 20px;
margin-left: -5px;
display: flex;
align-items: center;
justify-content: center;
2014-09-18 10:40:17 +00:00
}
2014-09-16 10:21:58 +00:00
.recipientList-icon {
width: 16px;
height: 16px;
fill: white;
2014-09-18 10:40:17 +00:00
opacity: 0.2;
}
2014-09-16 10:21:58 +00:00
.recipientList--new .recipientList-icon {
opacity: 1;
}
.recipientList-entry:hover .recipientList-icon {
2014-09-18 10:40:17 +00:00
opacity: 1;
}
2014-09-16 10:21:58 +00:00
2014-09-18 10:40:17 +00:00
.recipientList-name {
2014-11-07 13:37:02 +00:00
color: white;
2014-09-18 10:40:17 +00:00
margin-left: 10px;
flex: 1;
@extend .u-textTruncate;
}
.recipientList-arrow {
fill: white;
opacity: 0.39;
}
.recipientList-entry:hover .recipientList-arrow {
opacity: 1;
2014-09-18 10:40:17 +00:00
}
2014-09-18 10:40:17 +00:00
.recipientList-detail {
opacity: 0.5;
}
2014-09-18 10:40:17 +00:00
.recipientList-icon.plus {
margin-left: 13px;
}
.recipientList--new {
2014-09-18 10:40:17 +00:00
background: hsl(145,51%,45%);
}
.dropdown .recipientList--new:hover {
2014-09-18 10:40:17 +00:00
background: hsl(147,52%,43%);
}
.recipientList-controls,
.recipientList-controls:hover {
@extend .u-clickable;
2015-05-28 11:33:54 +00:00
padding: 0 10px !important;
background: hsl(206,7%,28%) !important;
2014-09-18 10:40:17 +00:00
}
.recipientList-organizationMembers {
2014-09-18 10:40:17 +00:00
position: absolute;
top: 0;
left: 0;
right: 0;
}
2014-09-16 10:21:58 +00:00
.userInfo-avatar {
2014-09-25 11:29:06 +00:00
float: right;
2014-09-26 14:51:37 +00:00
position: relative;
}
.organizationInfo-avatar {
@extend .userInfo-avatar;
padding: 18px 0 0 18px;
}
.userList {
list-style: none;
padding: 0;
li {
position: relative;
margin: 10px 0;
}
2014-09-25 11:29:06 +00:00
a {
@extend .u-textTruncate;
position: absolute;
top: 10px;
right: 0px;
left: 48px;
2014-09-25 11:29:06 +00:00
}
}
2014-09-25 11:29:06 +00:00
2014-09-26 15:08:41 +00:00
.checkbox.form-group .checkbox {
margin-top: 0;
2014-09-26 15:08:41 +00:00
margin-bottom: 15px;
height: auto;
padding-bottom: 2px;
background: hsl(210,17%,98%);
2014-09-26 15:08:41 +00:00
}
.checkbox.form-group label {
padding: 0 2px;
cursor: default;
}
.checkbox.form-group .controls label {
padding: 3px 0 3px 20px;
2014-09-26 15:08:41 +00:00
font: inherit;
font-size: 13px;
margin-bottom: 0;
2014-09-26 15:08:41 +00:00
color: inherit;
text-transform: inherit;
letter-spacing: 0;
@extend .u-clickable;
2014-09-26 15:08:41 +00:00
}
.checkbox.form-group input[type=checkbox] {
margin-top: 3px;
vertical-align: bottom;
2014-09-26 15:08:41 +00:00
}
2014-09-29 08:38:28 +00:00
.userSearch-label {
margin: 10px 10px 0 0;
2014-09-29 08:38:28 +00:00
}
.userSearch .tab:not(.active) {
background: white;
}
2015-06-09 19:20:55 +00:00
.userSearch {
margin: 0 0 20px;
}
2014-09-29 08:38:28 +00:00
.userSearch .tabs {
margin: 0;
}
2014-09-29 09:08:51 +00:00
.nav-tabs {
border-bottom: none;
}
.nav-tabs li {
margin: 0;
}
.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
background: white;
border-radius: 0;
border: 1px solid hsl(0,0%,90%);
color: hsl(0,0%,70%);
height: 40px;
margin: 0;
}
.nav-tabs > li:not(:last-child):not(:only-child) > a {
border-right: none;
}
.nav-tabs > li:first-child > a {
border-radius: 5px 0 0 5px;
}
.nav-tabs > li:last-child > a {
border-radius: 0 5px 5px 0;
}
.nav-tabs > li:only-child > a {
border-radius: 5px;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
background: hsl(206,7%,28%);
color: white;
2014-09-29 10:10:48 +00:00
border-color: hsl(0,0%,90%);
2014-09-29 09:08:51 +00:00
}
2014-09-30 11:15:40 +00:00
.main .nav-tabs:first-child {
margin: 28px 0 50px;
}
.settings-entry {
margin-bottom: 42px;
max-width: 700px;
}
.form-item .form-group {
margin-bottom: 0;
}
.form-item .form-group + .form-group {
margin-top: 15px;
}
.form-item + .btn {
margin-left: 23px;
2014-09-30 11:15:40 +00:00
}
2014-10-01 11:57:36 +00:00
.scrollPageHeader {
2015-06-10 10:58:21 +00:00
@extend .zIndex-6;
display: flex;
align-items: center;
2014-10-01 11:57:36 +00:00
background: white;
border-bottom: 1px solid hsl(0,0%,78%);
height: 64px;
top: 0;
left: 0;
right: 0;
2014-10-01 11:57:36 +00:00
padding: 0 22px;
position: absolute;
transform: translateY(-64px);
2014-10-01 11:57:36 +00:00
}
.scrollPageHeader small {
color: hsl(198,19%,72%);
}
.scrollPageHeader .ticket-title {
max-width: initial;
2014-10-07 10:22:12 +00:00
padding: 0;
min-width: 0;
flex: 1;
2014-10-01 11:57:36 +00:00
}
.scrollPageHeader h1 {
font-size: 19px;
margin: 0 15px;
@extend .u-textTruncate;
2014-10-01 11:57:36 +00:00
}
.wizard-logo {
fill: white;
margin-left: -25px;
margin-bottom: 5px;
}
2014-11-14 10:15:00 +00:00
.wizard-slide {
@extend .hero-unit;
display: flex;
flex-direction: column;
width: 400px;
2014-11-14 10:15:00 +00:00
padding-bottom: 18px;
2014-11-17 15:08:24 +00:00
margin-bottom: 20px;
2014-10-07 10:23:03 +00:00
}
.wizard h2 {
text-align: center;
border-bottom: 1px solid rgba(0,0,0,.13);
padding-bottom: 8px;
margin-bottom: 16px;
2015-05-26 23:24:03 +00:00
2014-11-14 10:15:00 +00:00
& + p {
margin-top: 0;
}
2014-10-07 10:23:03 +00:00
}
.wizard-body {
flex: 1;
2014-10-07 10:23:03 +00:00
padding-bottom: 15px;
}
.wizard-controls {
display: flex;
2014-11-14 10:15:00 +00:00
margin-top: 15px;
2014-10-07 10:23:03 +00:00
height: 39px;
}
2014-11-14 10:15:00 +00:00
.wizard-buttonList {
margin-top: 15px;
min-width: 200px;
}
p + .wizard-buttonList,
label + .wizard-buttonList {
margin-top: 5px;
}
2014-10-07 10:23:03 +00:00
.wizard-loadingText {
text-align: center;
margin: 0;
}
.wizard-loadingText .loading {
vertical-align: middle;
margin-right: 10px;
}
2014-11-14 10:15:00 +00:00
.wizard-aside {
padding-top: 15px;
text-align: center;
border-top: 1px solid rgba(0,0,0,.13);
}
.setup.wizard .wizard-body {
min-height: 140px;
2015-05-26 23:24:03 +00:00
2014-11-14 10:15:00 +00:00
& > p:first-child {
margin-top: 0;
}
}
2014-11-15 13:27:23 +00:00
.setup.wizard .logo-preview {
display: block;
2014-11-17 09:29:50 +00:00
height: 0;
max-width: 200px;
max-height: 100px;
2014-11-16 22:45:57 +00:00
2014-11-17 09:29:50 +00:00
+ .logo-preview-placeholder {
height: 100px;
color: hsl(0,0%,60%);
background: hsl(0,0%,95%);
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
2014-11-15 14:55:35 +00:00
}
2014-11-14 10:15:00 +00:00
}
2014-11-15 13:27:23 +00:00
.setup.wizard .logo-preview:not([src=""]) {
margin: 0 auto 15px;
2014-11-15 14:55:35 +00:00
height: auto;
2015-05-26 23:24:03 +00:00
2014-11-17 09:29:50 +00:00
+ .logo-preview-placeholder {
display: none;
}
2014-11-14 10:15:00 +00:00
}
2014-11-17 15:08:24 +00:00
.setup.wizard .base-outbound-settings {
margin-top: 15px;
}
.import.wizard .wizard-slide {
height: 300px;
}
2014-10-07 10:23:03 +00:00
.import-source {
border-radius: 5px;
border: 1px solid rgba(0,0,0,.13);
height: 50px;
margin: 5px 0;
@extend .u-clickable;
2014-10-07 10:23:03 +00:00
}
.input-feedback {
position: absolute;
padding-left: 10px;
right: 1px;
top: 1px;
bottom: 1px;
width: 52px;
border-radius: 0 5px 5px 0;
2014-10-07 15:28:24 +00:00
background: linear-gradient(to right, rgba(255,255,255,0), white 33%);
2014-10-07 10:23:03 +00:00
}
.input-feedback .icon {
display: none;
}
.input-feedback[data-state=loading] .loading.icon,
.input-feedback[data-state=error] .icon-error,
.input-feedback[data-state=success] .icon-checkmark {
2014-10-07 10:23:03 +00:00
display: block;
}
.progressTable {
2014-10-07 12:36:09 +00:00
width: 100%;
2014-10-07 10:23:03 +00:00
margin: 0 auto;
}
.progressTable td {
2014-10-07 12:36:09 +00:00
padding: 8px;
overflow: auto;
width: 33%;
2014-10-07 10:23:03 +00:00
}
.progressTable tr:not(:last-child) {
border-bottom: 1px solid #eee;
}
.progressTable td:first-child {
text-align: right;
}
2014-10-07 12:36:09 +00:00
.progressTable progress {
width: 100%;
min-width: 60px;
display: block;
2014-10-07 10:23:03 +00:00
}
.progressTable .icon-checkmark {
2014-10-07 10:23:03 +00:00
margin-left: 10px;
opacity: 0;
}
.progressTable tr.is-done .icon-checkmark {
2014-10-07 10:23:03 +00:00
opacity: 1;
}
2014-11-14 10:15:00 +00:00
.channelList {
flex: 1;
display: flex;
flex-direction: column;
2014-11-14 10:15:00 +00:00
background: white;
border-radius: 2px;
margin: 5px 0 20px;
}
.channelList,
.channelList-controls,
.channelList-controlEntry {
border: 1px solid hsl(251,6%,90%);
}
.channelList-entry {
display: flex;
2014-11-14 10:15:00 +00:00
cursor: default;
padding: 5px 8px;
2015-05-26 23:24:03 +00:00
2014-11-14 10:15:00 +00:00
&:not(:last-child) {
border-bottom: 1px solid hsl(251,6%,90%);
}
}
.channelList-label {
margin: 0 10px;
flex: 1;
2014-11-14 10:15:00 +00:00
& > * {
2015-05-26 23:24:03 +00:00
@extend .u-textTruncate;
2014-11-14 10:15:00 +00:00
}
}
.channelList-status {
font-size: 12px;
color: #999;
}
.channelList-placeholder {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
2014-11-14 10:15:00 +00:00
color: #999;
}
.channelList-controls {
margin-top: auto;
display: flex;
2014-11-14 10:15:00 +00:00
background: hsl(251,6%,92%);
border-left: none;
border-right: none;
border-bottom: none;
}
.channelList-controlEntry {
display: flex;
justify-content: center;
2014-11-14 10:15:00 +00:00
width: 26px;
height: 26px;
border-left: none;
border-top: none;
border-bottom: none;
position: relative;
[data-toggle=dropdown] {
position: relative;
}
.icon {
opacity: 0.8;
}
}
.avatar-gallery {
display: flex;
flex-wrap: wrap;
}
2014-10-29 19:43:56 +00:00
.avatar-holder {
display: inline-block;
position: relative;
margin: 0 32px 32px 0;
2014-10-29 19:43:56 +00:00
border-radius: 100%;
box-shadow: 0 0 0 4px white;
2014-10-29 19:43:56 +00:00
.avatar {
@extend .u-clickable;
&.is-active {
box-shadow: 0 0 0 4px hsl(200,71%,59%);
2014-10-29 19:43:56 +00:00
}
}
}
.avatar--new {
background: hsl(145,51%,45%);
@extend .u-clickable;
}
.avatar-holder .avatar-delete {
position: absolute;
right: -15px;
top: -15px;
width: 40px;
height: 40px;
2014-10-29 19:43:56 +00:00
pointer-events: none;
visibility: hidden;
background: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100%;
box-shadow: 0 1px 5px rgba(0,0,0,.05);
2014-10-29 19:43:56 +00:00
@extend .u-clickable;
svg {
opacity: 0.5;
fill: hsl(234,10%,19%);
}
2014-10-29 19:43:56 +00:00
&:hover svg {
2014-10-29 19:43:56 +00:00
opacity: 1;
}
}
.avatar-holder:hover .avatar-delete {
visibility: visible;
pointer-events: auto;
}
.camera video {
position: absolute;
visibility: hidden;
pointer-events: none;
}
.camera-preview {
display: block;
margin: 0 auto;
}
.camera-flash {
@extend .fit;
background: white;
opacity: 0;
@extend .u-unclickable;
}
.camera-flash.is-active {
animation: flash 500ms ease;
2014-10-29 19:43:56 +00:00
}
@keyframes flash { 0% { opacity: 0 } 50% { opacity: 1 } 100% { opacity: 0 } }
2014-10-29 19:43:56 +00:00
.fileUpload {
position: relative;
overflow: hidden;
}
.fileUpload input {
position: absolute;
right: 0;
top: 0;
font-size: 118px;
margin: 0;
padding: 0;
cursor: pointer;
opacity: 0;
}
.imageCropper p {
margin: 0;
}
.imageCropper-holder {
height: 340px;
margin: 15px 0;
}
.imageCropper-image {
max-width: 100%;
max-height: 100%;
opacity: 0;
}
.imageCropper-preview {
width: 40px;
height: 40px;
border-radius: 100%;
overflow: hidden;
margin: 0 10px;
background: hsl(210,17%,98%);
}
.cropper-container {
/* prevent cropper.js's centering we center via flex */
left: 0 !important;
}
.profile {
2014-11-07 13:37:02 +00:00
padding: 60px;
overflow: auto;
2015-05-26 16:48:35 +00:00
flex: 1;
2014-11-07 13:37:02 +00:00
h1 {
margin: 18px 0 0;
}
.tabs {
margin-top: 2px;
margin-bottom: 25px;
}
}
.profile-window {
color: hsl(60,1%,34%);
2014-11-07 13:37:02 +00:00
background: white;
max-width: 660px;
margin: 0 auto;
border: 1px solid #e6e6e6;
}
.profile-section {
2014-11-07 13:37:02 +00:00
padding: 20px 50px;
&.profile-memberSection {
margin-bottom: 10px;
}
2014-11-07 13:37:02 +00:00
}
.profile-section:not(:last-child) {
2014-11-07 13:37:02 +00:00
border-bottom: 1px solid #f2f2f2;
}
.profile-action {
2014-11-07 13:37:02 +00:00
margin-right: -20px;
.dropdown-toggle {
margin-top: -20px;
margin-right: -30px;
margin-bottom: 8px;
padding: 26px 40px 2px;
}
label {
margin: 0 8px;
2014-11-07 13:37:02 +00:00
padding: 0;
cursor: inherit;
}
}
.profile-subtitle {
2014-11-07 13:37:02 +00:00
font-size: 16px;
@extend .u-highlight;
}
.profile-details {
2014-11-07 13:37:02 +00:00
margin-left: -50px;
}
.profile-ticketsPlaceholder {
flex: 1;
margin: 8px 0 22px;
color: hsl(209,28%,74%);
.stat-icon {
margin-bottom: 10px;
}
}
.profile-detailsEntry {
2014-11-07 13:37:02 +00:00
margin: 8px 0;
padding-left: 50px;
width: 50%;
}
.profile-detailsEntry label {
2014-11-07 13:37:02 +00:00
padding: 0;
margin-bottom: 2px;
display: block;
}
.profile-organizationMember {
@extend .profile-detailsEntry;
display: flex;
align-items: center;
.avatar {
margin-right: 10px;
}
}
2015-06-03 08:26:51 +00:00
.profile-ticketLists {
display: flex;
margin: 0 -25px;
}
.profile-ticketList {
display: flex;
flex-direction: column;
2015-06-03 08:26:51 +00:00
flex: 1 1 50%;
padding: 0 25px;
2015-06-11 14:06:02 +00:00
min-width: 0; /* Firefox wrong content-calculation with word-wrap workaround */
.tasks {
margin-bottom: 10px;
display: flex;
flex-direction: column;
}
2014-11-07 13:37:02 +00:00
}
.profile .frequency.stat-widget {
2014-11-07 13:37:02 +00:00
height: 230px;
.stat-bars {
height: 100px;
}
}
.profile-organizationIcon {
display: flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
background: hsl(0,0%,87%);
border-radius: 100%;
opacity: 0.4;
2015-05-26 16:48:35 +00:00
svg {
width: 32px;
height: 32px;
}
}
2015-06-02 18:23:02 +00:00
.highlighter {
2015-06-08 10:36:18 +00:00
display: flex;
2015-06-02 18:23:02 +00:00
}
2015-06-02 16:21:14 +00:00
[data-highlightcolor=Yellow]::selection { background: #f7e7b2; }
2015-03-12 10:26:12 +00:00
.highlight-Yellow { background: #f7e7b2; }
2015-03-10 20:11:36 +00:00
2015-06-02 16:21:14 +00:00
[data-highlightcolor=Green]::selection { background: #bce7b6; }
2015-03-12 10:26:12 +00:00
.highlight-Green { background: #bce7b6; }
2015-03-10 20:11:36 +00:00
2015-06-02 16:21:14 +00:00
[data-highlightcolor=Blue]::selection { background: #b3ddf9; }
2015-03-12 10:26:12 +00:00
.highlight-Blue { background: #b3ddf9; }
2015-03-10 20:11:36 +00:00
2015-06-02 16:21:14 +00:00
[data-highlightcolor=Pink]::selection { background: #fea9c5; }
2015-03-12 10:26:12 +00:00
.highlight-Pink { background: #fea9c5; }
2015-03-10 20:11:36 +00:00
2015-06-02 16:21:14 +00:00
[data-highlightcolor=Purple]::selection { background: #eac5ee; }
2015-03-12 10:26:12 +00:00
.highlight-Purple { background: #eac5ee; }
2015-03-10 20:11:36 +00:00
.translationOverview {
2015-04-12 20:47:56 +00:00
tbody > tr > td {
padding: 20px 0 0 10px;
}
.translationOverview-itemContainer {
padding: 10px 0 10px 10px;
}
.translationOverview-source {
width: 25%;
}
.translationOverview-target {
width: 35%;
}
.translationOverview-initial {
width: 25%;
}
.translationOverview-item {
width: 100%;
}
}
.overview-navigator {
2015-06-02 18:23:02 +00:00
@extend .horizontal;
}
.overview-navigator .pagination {
margin: 0 0 0 10px;
}
.empty-space {
padding: 50px;
svg {
width: 200px;
height: auto;
}
.empty-space-tagline {
color: hsl(198, 19%, 72%);
margin-top: 15px;
font-size: 18px;
}
}
2015-06-16 11:17:55 +00:00
.horizontal-filters {
margin-bottom: 20px;
}
.horizontal-filter {
display: flex;
align-items: center;
background: hsl(197,20%,93%);
padding: 14px 10px;
border: 1px solid hsl(198,19%,86%);
&:first-child {
border-radius: 3px 3px 0 0;
2015-06-16 11:17:55 +00:00
}
&:last-child {
border-radius: 0 0 3px 3px;
2015-06-16 11:17:55 +00:00
}
&:only-child {
border-radius: 3px;
2015-06-16 11:17:55 +00:00
}
& + .horizontal-filter {
border-top: 1px solid hsl(198,19%,87%);
}
.horizontal-filter-body {
display: flex;
align-items: center;
flex-wrap: wrap;
flex: 1;
2015-06-16 11:17:55 +00:00
}
.controls,
input {
margin-right: 5px;
}
select,
input {
border-color: hsl(198,19%,86%);
}
input[type=text] {
width: auto;
}
}
.horizontal-filter-text {
margin-right: 5px;
}
.filter-controls {
display: flex;
align-items: center;
}
.filter-control {
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
border: 1px solid hsl(198,19%,86%);
border-radius: 100%;
background: white;
cursor: pointer;
&:hover:not(.is-disabled) {
border-color: hsl(198,19%,83%);
.icon {
fill: black;
}
}
&.is-disabled {
cursor: not-allowed;
opacity: 0.5;
}
&:not(:last-child) {
margin-right: 7px;
}
.icon {
width: 13px;
height: 13px;
fill: hsl(0,0%,61%);
}
}
.filter-preview {
margin: 20px 0;
}
.day-name {
text-align: center;
margin-bottom: 0;
color: inherit;
white-space: nowrap;
2015-06-16 11:17:55 +00:00
}
.form-group.day-time {
padding: 10px 10px 0;
input {
border-left: none;
border-right: none;
border-radius: 0;
margin: 0 -10px;
border-bottom: 0;
}
}
.settings-list {
border-collapse: separate;
2015-06-16 11:17:55 +00:00
&:not(:last-child) {
margin-bottom: 34px;
2015-06-16 11:17:55 +00:00
}
&.settings-list--toggleRow {
tr:not(.is-active) td * {
opacity: 0.33;
}
2015-06-16 11:17:55 +00:00
}
&.settings-list--toggleColumn {
td:not(.is-active) * {
opacity: 0.33;
}
2015-06-16 11:17:55 +00:00
}
th, td {
padding: 10px;
border: 1px solid hsl(198,18%,86%);
}
th {
font-weight: normal;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 1px;
background: hsl(197,20%,93%);
border-bottom: none;
2015-06-16 11:17:55 +00:00
}
.text-muted {
text-transform: none;
font-size: 10px;
letter-spacing: 0;
color: hsl(198,18%,72%);
}
2015-06-16 11:17:55 +00:00
th:not(:last-child),
td:not(:last-child) {
border-right: none;
}
2015-06-16 11:17:55 +00:00
tr:not(:last-child) td {
border-bottom: none;
2015-06-16 11:17:55 +00:00
}
thead th:first-child {
border-top-left-radius: 3px;
}
thead th:last-child {
border-top-right-radius: 3px;
}
tbody tr:last-child td:first-child {
border-bottom-left-radius: 3px;
}
tbody tr:last-child td:last-child {
border-bottom-right-radius: 3px;
}
p {
2015-06-16 11:17:55 +00:00
margin: 0;
}
}
/*
2014-07-18 16:18:13 +00:00
----------------
normal screens
----------------
*/
@media only screen and (max-width: 1280px) {
.sidebar.optional {
display: none;
2014-07-18 16:18:13 +00:00
}
}
/*
----------------
layout classes
----------------
*/
2014-10-08 08:35:48 +00:00
.horizontal,
.vertical,
.centered {
display: flex;
}
2014-10-08 08:35:48 +00:00
.horizontal.hide,
.vertical.hide,
.centered.hide {
display: none;
}
.horizontal {
flex-direction: row;
}
.horizontal.reverse {
flex-direction: row-reverse;
}
.vertical {
flex-direction: column;
}
.vertical.reverse {
flex-direction: column-reverse;
}
.vertical.stretch > *,
.horizontal.stretch > * {
flex: 1;
}
.relative {
position: relative;
}
.fit {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
body.fit {
margin: 0;
}
.scrollable {
overflow: auto;
}
.flex {
flex: 1;
}
2014-12-09 10:12:51 +00:00
.flex-full {
flex: 1 1 100%;
2014-12-09 10:12:51 +00:00
}
.flex-auto {
flex: 1 1 auto;
}
.flex-shrink {
flex: 0 1 auto;
}
.flex-none {
flex: none;
}
.flex-1 {
flex: 1;
}
.flex-2 {
flex: 2;
}
.flex-3 {
flex: 3;
}
.justify-start {
justify-content: flex-start;
}
.justified {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-between {
justify-content: space-between;
}
.start {
align-items: flex-start;
}
.center {
align-items: center;
}
.centered {
align-items: center;
justify-content: center;
}
.end {
align-items: flex-end;
}
.self-start {
align-self: start;
}
2015-05-08 09:58:00 +00:00
.self-end {
align-self: end;
2015-05-08 09:58:00 +00:00
}
.two-columns,
.three-columns,
.wrap {
flex-wrap: wrap;
}
.two-columns > .column {
width: 50%;
}
.three-columns > .column {
width: 33.33%;
}
.align-left {
margin-right: auto;
}
.align-right {
margin-left: auto;
}
.align-center {
margin-left: auto;
margin-right: auto;
}