Newer
Older

Rafael Ostertag
committed
@spinner : url(data:image/gif;base64,R0lGODlhEAAQAKIAAP///9bW1szMzL29vXt7e3Nzc2ZmZv4BAiH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAHACwAAAAAEAAQAAADPAi6QRQrymJMkcwFatuLXOFt1bWEYBmNq6awGDCicUhjIYzBwTBAmc9CQBSkLJGiYKZi+EgdV60ZCwIjCQAh+QQFBwAHACwAAAYABgAIAAADE3gz1/LCwaYYbYTQYkxpnEdlRwIAIfkEBQcABwAsAAACAAYACAAAAxN4OqMnUKgoVzuEuGJMUZznZE4CACH5BAUHAAcALAIAAAAIAAYAAAMUeKozqyKKQ8iRohhTTjsa91DWkwAAIfkEBQcABwAsBgAAAAgABgAAAxR4RNddxhR3oDxjtHWEF9QHUtmRAAAh+QQFBwAHACwKAAIABgAIAAADFHhE12WmOCjbaviMgYUXzQc225EAACH5BAUHAAcALAoABgAGAAgAAAMTeEqkV8YUBaVjagwnulDel21KAgAh+QQFBwAHACwGAAoACAAGAAADFHiqRKvFmHLGOHGKLU47XPdYz5EAADs=);
@alert_container_id : #qfqAlertContainer;
@spinner_class : spinner;
@CodeMirror_border_color: #ccc;

Rafael Ostertag
committed
@{alert_container_id} {

Rafael Ostertag
committed
position: fixed;

Rafael Ostertag
committed
.alert {
padding: 30px;
border-radius: 0px;

Rafael Ostertag
committed
margin-bottom: 2px;
border-top: none;
border-left: none;
border-right: none;

Rafael Ostertag
committed
}

Rafael Ostertag
committed
i.@{spinner_class} {
display: inline-block;
background: @spinner no-repeat;
//height: image-height(@spinner);
//width: image-width(@spinner);
height: 16px;
width: 16px;
.qfq-dot {
display: inline-block;
margin-left: 5px;
background-color: #f2b867;
border-radius: 50%;
}
.alert-buttons {
margin-top: 10px;
}
/* CUSTOM RADIOS */
/* Hide the browser's default radio */
.radio-inline>input[type=radio], .radio>input[type=radio] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
-moz-appearance: none;
/*Radios don't scale correctly on Firefox with zoom*/
}
/* Customize the label (the container) */
display: inline-block;
position: relative;
padding-top: 0 !important;
margin-top: 7px !important;
margin-right: 10px;
cursor: pointer;
font-size: 1em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
position: absolute;
top: 0;
left: 0;
background-color: #fff;
border-radius: 50%;
border: 2px solid #ccc;
}
.qfq-image-border, .qfq-image-border-left, .qfq-image-border-right {
border: 1px solid #333;
}
.radio-inline:hover input ~ .checkmark, .radio:hover input ~ .checkmark {
.radio-inline input[type=radio]:checked ~ .checkmark, .radio input[type=radio]:checked ~ .checkmark {
background-color: #2196F3;
border-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio-inline input[type=radio]:checked ~ .checkmark:after, .radio input[type=radio]:checked ~ .checkmark:after {
display: block;
}
/* Style the indicator (dot/circle) */
.radio-inline .checkmark:after, .radio .checkmark:after {
width: 8px;
height: 8px;
border-radius: 50%;
background: #fff;
}
/* CUSTOM CHECKBOXES */
/* Hide the browser's default radio */
.checkbox-inline>input[type=checkbox], .checkbox>input[type=checkbox] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
-moz-appearance: none;
/*Checkboxes don't scale correctly on Firefox with zoom*/
}
/* Customize the label (the container) */
.checkbox-inline, .checkbox {
display: inline-block;
position: relative;
padding-top: 0 !important;
margin-top: 7px !important;
margin-right: 10px;
cursor: pointer;
font-size: 1em;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

Carsten Rose
committed
font-weight: normal;
.checkbox-inline input:read-only ~ .checkmark {
cursor: not-allowed;
pointer-events: none;
}
.qfq-disabled {
cursor: not-allowed !important;
pointer-events: none !important;
background: #eee !important;
/* Create a custom radio button */
.checkbox-inline .checkmark, .checkbox .checkmark {
position: absolute;
top: 0;
left: 0;
.checkbox-inline:hover input ~ .checkmark, .checkbox:hover input ~ .checkmark,
.checkbox-inline input:focus ~ .checkmark, .checkbox input:focus ~ .checkmark,
.checkbox-inline input:active ~ .checkmark, .checkbox input:active ~ .checkmark {
}
.checkbox-inline input:checked ~ .checkmark, .checkbox input:checked ~ .checkmark {
background-color: #2196F3;
border-color: #2196F3;
}
.checkbox-inline.qfq-disabled input ~ .checkmark, .checkbox.qfq-disabled input ~ .checkmark,
.checkbox-inline.qfq-disabled:hover input ~ .checkmark, .checkbox.qfq-disabled:hover input ~ .checkmark,
.radio-inline.qfq-disabled:hover input ~ .checkmark, .radio.qfq-disabled:hover input ~ .checkmark,
.radio-inline.qfq-disabled .checkmark, .radio.qfq-disabled .checkmark {
background-color: #eee;
border-color: #bbb;
}
.checkbox-inline.qfq-disabled input:checked ~ .checkmark, .checkbox.qfq-disabled input:checked ~ .checkmark,
.radio-inline.qfq-disabled input[type=radio]:checked ~ .checkmark, .radio.qfq-disabled input[type=radio]:checked ~ .checkmark {
background-color: #ccc;
border-color: #ccc;
}
/* Show the indicator (dot/circle) when checked */
.checkbox-inline input:checked ~ .checkmark:after, .checkbox input:checked ~ .checkmark:after {
display: block;
}
/* Style the indicator (dot/circle) */
.checkbox-inline .checkmark:after, .checkbox .checkmark:after {
top: 1px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.has-error .checkmark {
background-color: #fcf8e3;
border-color: #f2b867;
}
.has-error .radio-inline:hover input ~ .checkmark, .has-error .radio:hover input ~ .checkmark, .has-error .checkbox-inline:hover input ~ .checkmark, .has-error .checkbox:hover input ~ .checkmark {
.has-error .radio-inline, .has-error .radio, .has-error .checkbox, .has-error .checkbox-inline {
color: #ca7a0a;
}
.has-error .help-block {
display: inline-block;
padding: 6px 12px;
padding-left: 25px;
background-color: #f2b867;
border-radius: 4px;
color: #333;
}
.has-error .help-block:before {
content: "\f0e7"; /* this is your text. You can also use UTF-8 character codes as I do here */
font-family: FontAwesome;
left:25px;
position:absolute;
}
.qfq-only-active-error .with-errors.help-block {
display: none;
/* visibility: hidden;
max-height: 0;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
overflow: hidden;
opacity: 0;
transition: opacity 1s linear, max-height 0.25s ease-out; */
/* all anchors in form-group divs can only be created by users using #!report in forms. These anchors without a target href (#) like some elements which use js functions (example datetimepicker) dont need to be marked as required.*/
.form-group.has-error .btn:not(a[href="#"]) {
background-color: #f0ad4e;
background-image: linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);
background-repeat: repeat-x;
border-color: #e38d13;
font-weight: 200;
color: #fff;
}
.input-group ~ .with-errors.help-block:not(.hidden), input:focus ~ .with-errors.help-block:not(.hidden), textarea:focus ~ .with-errors.help-block:not(.hidden) {
display: inline-block;
/* visibility: visible;
max-height: 150px;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 7px;
transition: opacity 1s linear, max-height 0.25s ease-out; */
}
.has-error .control-label {
color: #333;
}
.help-block.with-errors ul {
margin-bottom: 0px;
}
.has-error .form-control {
background-color: #fcf8e3;
border-width: medium;
border-color: #f2b867;
}
.has-error .form-control:focus {
background-color: #fcf8e3;
border-color: #f2b867;
}
/* Color Variation Example Start */
.rebel-yell .has-error .form-control, .rebel-yell .has-error .form-control:focus {
border-color: #d30b6f;
background-color: #eb92be;
}
.rebel-yell .form-group.has-error .btn, .btn-rebel {
background-image: linear-gradient(to bottom,#e72a89 0,#d30b6f 100%);
background-repeat: repeat-x;
border-color: #d30b6f;
font-weight: 200;
color: #333;
}
.rebel-yell .has-error .help-block {
background-color: #e72a89;
.rebel-yell .checkbox-inline input:checked ~ .checkmark, .rebel-yell .checkbox input:checked ~ .checkmark,
.rebel-yell .radio-inline input[type=radio]:checked ~ .checkmark, .rebel-yell .radio input[type=radio]:checked ~ .checkmark {
/* Error Color Example End
Error Soft Example Start */
.qfq-notify .has-error .form-control {
.qfq-notify .has-error .help-block {
border: 0;
padding: 0 12px;
background-color: transparent;
content: ""; /* this is your text. You can also use UTF-8 character codes as I do here */
}
/* ERROR END */
.qfq-tinymce-readonly .mce-panel {
background-color: #eee;
}
.mono-space {
font-family: "Roboto Mono", "Menlo", "Segoe UI", monospace;
}
/* inline elements in horizontal mode are too much left */

Rafael Ostertag
committed
.form-horizontal {
.form-inline {
.form-group {
margin: 0;
}
}

Rafael Ostertag
committed
/* reduce unwished padding-top offset */
.checkbox {

Carsten Rose
committed
padding-top: 7px;

Rafael Ostertag
committed
}

Carsten Rose
committed

Rafael Ostertag
committed
.checkbox-inline {

Carsten Rose
committed
padding-top: 7px;

Carsten Rose
committed
margin-top: 0;

Rafael Ostertag
committed
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline {
margin-left: 0;
}

Rafael Ostertag
committed
.radio {
padding-top: 7px;

Rafael Ostertag
committed
}
input[type=file] {
display: inline;
}

Carsten Rose
committed
}
// select:invalid: Dropdown with 'emptyItemAtStart' and required are grey on form load.
select.qfq-locked:invalid {
color: #a0a0a0;
}

Rafael Ostertag
committed
.form-inline {
.control-label {
font-weight: normal;
}
}

Carsten Rose
committed
.lower-canvas {
background-color: #fff;
}
//.form-group.required.control-label:before{
// color: red;/home/a/bbaer/PhpstormProjects/uzh_cd_template
// content: "*";
// position: absolute;
// margin-left: -10px;
//}

Carsten Rose
committed
.required-right:after {
color: #d00;
content: "*";

Carsten Rose
committed
//position: absolute;

Carsten Rose
committed
//top: 10px;

Carsten Rose
committed
.required-left:before {
color: #d00;
content: "*";
//position: absolute;
margin-right: 3px;
//top: 10px;
}

Carsten Rose
committed
.qfq-table-50 {
min-width: 50%;
width: auto;
}
.qfq-table-80 {
min-width: 80%;
width: auto;
}
.qfq-table-100 {
min-width: 100%;
width: auto;
}

Carsten Rose
committed
.qfq-form-pill {

Carsten Rose
committed
border-top-right-radius: 4px;
border-top-left-radius: 4px; */
border: 1px solid #ccc;
border-top: none;

Carsten Rose
committed
}

Carsten Rose
committed
.qfq-form-body {
padding-top: 5px;
padding-bottom: 5px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;

Carsten Rose
committed
}
.qfq-form-no-title {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border: 1px solid #ccc;
}

Carsten Rose
committed
/* adjust BS padding of input elements: center */
.form-group {
padding-top: 5px;
margin-bottom: 0;
}

Carsten Rose
committed
/* adjust BS padding: Filename (=Text) of the uploaded file should be on the same base line as the label text left of it. */
.uploaded-file {
padding-top: 4px;
}
width: ~"calc(100% - 10px)";
margin: 0 5px;
border-radius: 0 0 4px 4px;
min-height: 20px;
border-radius: 4px 4px 0 0;
border: 1px solid #ccc;
.qfq-subrecord-table > thead > tr > th {
border-bottom: 1px solid #ccc;
}
.qfq-subrecord-table thead > tr > th, .qfq-subrecord-table tbody > tr > td {
padding: 4px 8px;
}
padding: 5px 6px !important;
font-size: 11px !important;
height: unset !important;
min-width: unset !important;
padding: 2px 3px !important;
font-size: 9px !important;
height: unset !important;
min-width: unset !important;
.qfq-form-title {
background-image: linear-gradient(to bottom, #fefefe 0, #dedede 100%);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
.qfq-comment-marker {
position: absolute;
right: 22px;
z-index: 2;
}

Carsten Rose
committed
.qfq-color-white {
background-color: #ffffff;
border-color: #fff;

Carsten Rose
committed
}
.qfq-color-grey-1 {
background-color: #dedede;
}
.qfq-color-grey-2 {
background-color: #ededed;
}
.qfq-color-blue-1 {
background-color: #d2dded;
}
.qfq-color-blue-2 {

Carsten Rose
committed
}
.qfq-form-right .qfq-label {
text-align: right;
padding-right: 0;
}
.qfq-child-margin-top + .qfq-child-margin-top {
margin-top: 15px;
}

Carsten Rose
committed
.qfq-note {

Carsten Rose
committed
padding-top: 2px;

Carsten Rose
committed
}

Carsten Rose
committed

Carsten Rose
committed
.control-label .small, .control-label small {
font-weight: normal;
}
.label-rebel {
background-color: #e72a89;
}
.qfq-fabric-fullscreen {
position: absolute;
top: 0;
left: 0;
z-index: 200;
width: 100vw;
height: 100vh;
}
.qfq-fabric-bar {
position: -webkit-sticky;
position: sticky;
top: 0;
width: 100%;
min-height: 41px;
z-index: 100;
border: 1px solid #ccc;
background-color: #ededed;
padding: 5px;
}
.qfq-fabric-bar .btn {
padding: 3px 8px;
}
.fabric-text {
width: 100%;
height: 80px;
}
#text-bg-submit {
background-color: #ccc;
height: 24px;
border: none;
}
.text-bg-toggle {
width: 24px;
height: 24px;
background-size: contain;
border: none;
}
margin-right: 2px;
}
.qfq-fabric-image {
display: none;
}
// Emoji
.emoji {
display: inline-block;
border: none;
width: 32px;
height: 32px;
margin: 5px;
}

Carsten Rose
committed
// typeAhead Input: Default Bootstrap column width
.twitter-typeahead {
display: block !important;
}
.qfq-cc-style {
font-size: 0.8em;

Carsten Rose
committed
color: #777;
//position: relative;
//top: -24px;
//right: 10px;
//text-align: right;
//display: block;
.qfq-vertical {
vertical-align: bottom;
text-align: center;
}
.qfq-vertical span, .qfq-vertical .qfq-vertical-text {
-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
transform: rotate(180deg);
white-space: nowrap;
}

Carsten Rose
committed
// TypeAhead Suggestions

Carsten Rose
committed
.tt-menu {
background-color: #fff;
border-left: 1px solid #66afe9;
border-right: 1px solid #66afe9;
border-bottom: 1px solid #66afe9;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
width: 100%;
}
// typeAhead tags
span.qfq-typeahead-tag {
margin-right: 5px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: unset;
}
}
.qfq-image-left, .qfq-image-border-left {
float: left;
}
.qfq-image-right, .qfq-image-border-right {
float: right;
}
.tt-suggestion {
cursor: pointer;
cursor: hand;
padding-left: 12px;
padding-right: 12px;
padding-bottom: 6px;
padding-top: 12px;

Carsten Rose
committed
}
.tt-suggestion + .tt-suggestion {
padding-top: 6px;
}
.tt-suggestion:hover {
background-color: rgba(102, 175, 233, .6);

Carsten Rose
committed
}

Carsten Rose
committed
// Workaround as long as rendering of notes can't be specific.
.qfq-note-no-padding {
margin-top: -7px;
}

Carsten Rose
committed
// Mit BB anschauen wie man die NOTE Felder formatiert
//
//.text-input {
// padding-top: 7px;
//}
//
//.text-note {
// padding-top: 7px;
//}
.CodeMirror {
border: 1px solid @CodeMirror_border_color;
border-radius: 4px;
/* classes for toggleable note mockup, bb */
.qfq-icon-inside {
position: relative;
top: -22px;
left: calc(100% - 26px);
}
.qfq-margin-top {
margin-top: 10px;
}
/* spinning icons */
.text-large-with-margin {
font-size: 92px;
line-height: normal;
.qfq-icon-gear {
height: 190px;
width: 190px;
margin: 1em;
}
-webkit-animation: spin 2350ms infinite linear;
animation: spin 2350ms infinite linear;
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}

Carsten Rose
committed
}

Carsten Rose
committed
pointer-events: none;
// Buttons: full width
.qfq-100 {
width: 100%;
}
// Buttons: text left aligned
.qfq-left {
text-align: left;
display: box;
left: 50%;
transform: translate(-50%,0);
top: 200px;
overflow-y: auto;
overflow-x: hidden;
.alert-interactive tr td {
color: #d0d0d0;
}
.alert-interactive tr:hover td {
color: #0E2231;
}
.alert-side > p.body {
margin: 0px;
overflow: hidden;
white-space: nowrap;
}
.alert-side {
position: fixed;
display: box;
right: 0px;
top: 20px;
padding: 20px;
color: #d0d0d0;
border-left: 5px solid;
background-color: #333;
z-index: 10000; /* Always on top */
.border-success {
border-color: #5cb85c;
}
.border-error {
}
.border-warning {
border-color: #fbb64f;
}
.border-info {
border-color: #25adf1;
}
.blockscreenQfq {
position: fixed;
left: 0px;
right: 0px;
top: 0px;
z-index: 998;
filter: blur(23px);
background: rgba(255, 255, 255, 0.5);
}
.blur {
filter: blur(2px);
}
.alert-interactive p.title {
font-size: 1.5em;
margin-bottom: 0px;
}
.alert-interactive p.buttons {
margin-top: 20px;
text-align: center;
.alert-interactive .table-hover>tbody>tr:hover {
color: #333;
background-image: linear-gradient(to bottom,#b9def0 0,#9acfea 100%)
}
border: 1px solid #ccc;
.qfqCodeCorrectionTitle {
border: 1px solid #ccc;
border-radius: 10px 10px 0 0;
background-image: linear-gradient(to bottom, #fff 0, #e0e0e0 100%);
box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
height: 40px;
};
border-right: 1px solid #ccc;
padding-right: 10px;
line-height: 23px;
background-color: #efefef;
}
.qfqCode {
width: ~"calc(100% - 50px)";
min-height: 23px;
padding-left: 15px;
text-align: left;
font-size: 1.2em;
font-family: monospace;
}
.qfqCodeLine {
background-color: #fff;
}
.qfqCodeLine:hover {
background-color: #efefef;
}
.qfqCodeLine:hover .qfqLineCount {
background-color: #b9def0;
border-color: #9acfea;
color: #31708f;
}
.qfqCommentContainer {
color: #333;
height: 100%;
.qfqComment {
display: grid;
position: relative;
grid-template-columns: 110px auto;