2015-10-13 11:39:42 +02:00
|
|
|
$ascribe-red-error: rgb(169, 68, 66);
|
|
|
|
|
2015-10-12 15:25:21 +02:00
|
|
|
.ascribe-property-wrapper {
|
|
|
|
background-color: white;
|
|
|
|
border-left: 3px solid rgba(0, 0, 0, 0);
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&div:last-of-type {
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, .05);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2016-03-21 16:30:54 +01:00
|
|
|
border-left: 3px solid rgba($ascribe-blue, .5);
|
2015-10-12 15:25:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-focused {
|
2016-03-21 16:30:54 +01:00
|
|
|
background-color: rgba($ascribe--button-default-color, .05);
|
|
|
|
border-left: 3px solid $ascribe--button-default-color;
|
2015-10-12 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.is-error {
|
2015-10-13 11:39:42 +02:00
|
|
|
background-color: rgba($ascribe-red-error, .03);
|
|
|
|
border-left: 3px solid rgba($ascribe-red-error, 1);
|
2015-10-12 15:25:21 +02:00
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
//FIXME
|
2015-10-12 15:25:21 +02:00
|
|
|
> div {
|
2015-11-10 17:35:57 +01:00
|
|
|
> p {
|
|
|
|
> span {
|
|
|
|
color: rgba($ascribe-red-error, 1);
|
|
|
|
font-size: .9em;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
2015-10-12 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
> span {
|
|
|
|
color: rgba($ascribe-red-error, 1) !important;
|
|
|
|
}
|
|
|
|
|
2015-10-12 15:25:21 +02:00
|
|
|
> input,
|
|
|
|
> textarea {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2016-03-21 16:30:54 +01:00
|
|
|
border-left: 3px solid rgba($ascribe-red-error, .5)!important
|
2015-10-12 15:25:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-08 18:23:02 +01:00
|
|
|
.is-warning {
|
|
|
|
border-left: 3px solid $ascribe-pink
|
|
|
|
}
|
|
|
|
|
2015-10-12 15:25:21 +02:00
|
|
|
.is-fixed {
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
> input,
|
|
|
|
> div,
|
|
|
|
> pre,
|
|
|
|
> textarea {
|
|
|
|
color: #666;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ascribe-property {
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, .05);
|
2016-03-21 16:30:54 +01:00
|
|
|
color: $ascribe-dark-blue;
|
2015-10-12 15:25:21 +02:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
2015-12-16 19:03:01 +01:00
|
|
|
padding: 1em 1.5em;
|
2015-10-12 15:25:21 +02:00
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
> p {
|
|
|
|
height: 20px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
> span {
|
|
|
|
font-size: .9em;
|
|
|
|
}
|
2015-10-12 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
//FIXME
|
2015-10-12 15:25:21 +02:00
|
|
|
> div {
|
|
|
|
> div:not(.file-drag-and-drop div) {
|
|
|
|
color: rgba(0, 0, 0, .5);
|
|
|
|
cursor: default;
|
|
|
|
font-size: 1.1em;
|
2016-03-21 16:30:54 +01:00
|
|
|
font-weight: $ascribe--font-weight-light;
|
2015-10-12 15:25:21 +02:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
> span:not(.glyphicon) {
|
|
|
|
color: $ascribe--button-default-color;
|
|
|
|
}
|
|
|
|
|
2015-10-12 15:25:21 +02:00
|
|
|
> .progressbar-container, .progressbar-progress {
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
//END OF FIXME SECTION
|
2015-11-12 14:48:57 +01:00
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
.form-control {
|
|
|
|
color: $ascribe-dark-blue;
|
2015-10-12 15:25:21 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ascribe-property-footer {
|
|
|
|
font-size: .8em;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ascribe-property-collapsible-toggle {
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, .05);
|
|
|
|
display: inline-block;
|
2015-11-18 16:31:37 +01:00
|
|
|
padding: .75em 0 .75em 1.5em;
|
2015-10-12 15:25:21 +02:00
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-21 16:30:54 +01:00
|
|
|
.ascribe-property {
|
|
|
|
input::-webkit-input-placeholder {
|
|
|
|
color: rgba($ascribe-dark-blue, 0.5);
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
/* firefox 19+ */
|
|
|
|
input::-moz-placeholder {
|
|
|
|
color: rgba($ascribe-dark-blue, 0.5);
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
/* firefox 18- */
|
|
|
|
input:-moz-placeholder {
|
|
|
|
color: rgba($ascribe-dark-blue, 0.5);
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
/* ie */
|
|
|
|
input:-ms-input-placeholder {
|
|
|
|
color: rgba($ascribe-dark-blue, 0.5);
|
|
|
|
font-style: normal;
|
2015-10-12 15:25:21 +02:00
|
|
|
}
|
2015-12-08 18:23:02 +01:00
|
|
|
}
|