123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517 |
- @import 'wizard_variables';
- .no-access-gutter {
- margin-top: 10px;
- display: flex;
- justify-content: flex-end;
- }
- .custom-wizard {
- background-color: initial;
- font-size: 1.1em;
- .wizard-step-contents {
- position: relative;
- display: flex;
- flex-direction: column;
- width: 100%;
- min-height: initial;
- }
- img.emoji {
- width: 20px;
- height: 20px;
- vertical-align: middle;
- }
- .wizard-step-title {
- flex: 0;
- }
- .wizard-step-description {
- flex: 0;
- p {
- line-height: 1.7;
- img {
- @extend img.emoji;
- }
- }
- i {
- margin-right: 7px;
- }
- ul li {
- margin: 10px 0;
- }
- .image-container {
- padding: 0 20px;
- margin: 50px 0;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- a {
- cursor: pointer;
- }
- span {
- display: block;
- text-align: center;
- max-width: 140px;
- color: #333;
- }
- &.group {
- padding: 0;
- margin: 0;
- width: 130px;
- height: 130px;
- }
- }
- img.large {
- width: 150;
- padding: 25px;;
- }
- img.small {
- width: 100;
- padding: 15px;
- }
- img.x-small {
- width: 50px;
- height: 50px;
- padding: 3px;
- }
- label {
- display: block;
- text-align: center;
- }
- .inline-list > * {
- display: inline-block;
- }
- }
- .wizard-step-banner {
- width: initial;
- margin-bottom: 1em;
- img {
- max-height: 300px;
- }
- }
- .wizard-step-form {
- flex: auto;
- display: flex;
- flex-direction: column;
- width: 100%;
- overflow-y: auto;
- }
- .wizard-field {
- &.tip {
- margin-top: auto;
- }
- label {
- display: flex;
- flex-flow: wrap;
- align-items: center;
- .label-value {
- width: 100%;
- p {
- margin: 0;
- }
- }
- .field-image {
- margin-right: 10px;
- img {
- width: 30px;
- height: 30px;
- }
- }
- .field-description {
- flex: 1;
- color: #333;
- margin-top: 0;
- p {
- margin: 0;
- line-height: 1.3em;
- }
- img {
- height: 15px;
- width: 15px;
- margin: 0 5px;
- }
- }
- }
- }
- .checkbox-field {
- display: flex;
- align-items: center;
- &> .input-area {
- order: 0;
- margin: 15px 20px !important;
- input {
- cursor: pointer;
- transform: scale(1.3);
- }
- }
- &> label {
- order: 1;
- }
- &> .field-description {
- margin-top: 0;
- order: 2;
- }
- }
- .control-group {
- display: inline-block;
- vertical-align: top;
- margin-right: 20px;
- .controls {
- margin: 5px 0;
- }
- input {
- width: 200px;
- line-height: 24px;
- }
- input[disabled] {
- background-color: #e9e9e9;
- border: #e9e9e9;
- }
- ul {
- padding: 0;
- }
- }
- .wizard-step-form .wizard-btn {
- display: block;
- margin: 20px 0;
- }
- .wizard-image-row .wizard-btn-upload {
- margin: 0;
- }
- .wizard-field-upload {
- .wizard-btn-upload-file {
- display: inline-block;
- position: relative;
- cursor: pointer;
- input {
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
- }
- .filename {
- margin-left: 10px;
- }
- }
- .wizard-column .wizard-field .input-area {
- margin: 0.5em 0;
- }
- .combo-box {
- ul {
- padding: 0;
- }
- p {
- margin: 0;
- }
- }
- .wizard-buttons > a, .wizard-buttons > button, .spinner {
- display: inline-block;
- vertical-align: middle;
- }
- .spinner.small {
- margin-right: 10px;
- }
- }
- .step-message {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 0;
- line-height: 0;
- text-align: center;
- transition: all .2s;
- z-index: 2;
- &.success {
- height: 60px;
- line-height: 60px;
- background-color: #009900;
- color: #ffffff;
- }
- &.error {
- height: 60px;
- line-height: 60px;
- background-color: #e45735;
- color: #ffffff;
- }
- }
- .p-list-box {
- max-width: 550px;
- position: relative;
- margin: 10px 0;
- .spinner {
- position: absolute;
- right: 50%;
- top: 50%;
- }
- .p-text {
- margin-bottom: 5px;
- }
- ul {
- border: 1px solid #e9e9e9;
- padding: 0;
- margin: 0;
- list-style: none;
- height: 200px;
- overflow: scroll;
- }
- li {
- padding: 6px 12px;
- cursor: pointer;
- background-color: #fff;
- display: flex;
- border-top: 1px solid #e9e9e9;
- border-bottom: 1px solid #e9e9e9;
- &:hover, &.selected {
- background-color: #eee;
- }
- label {
- flex: 1 1 auto;
- cursor: pointer;
- }
- i {
- margin-right: 5px;
- }
- }
- .no-results {
- padding: 15px;
- }
- .default {
- margin: 0 auto;
- top: 50%;
- transform: translateY(-50%);
- position: absolute;
- width: 100%;
- text-align: center;
- color: #919191;
- }
- }
- .spinner {
- margin: 20px auto 20px auto;
- position: relative;
- -webkit-animation: rotate-forever 1s infinite linear;
- animation: rotate-forever 1s infinite linear;
- height: 30px;
- width: 30px;
- border: 4px solid #ccc;
- border-right-color: transparent;
- border-radius: 50%;
- &.small {
- width: 10px;
- height: 10px;
- margin: 0;
- display: inline-block;
- }
- }
- .user-selector-field.wizard-field {
- div.ac-wrap div.item a.remove, .remove-link {
- margin-left: 4px;
- font-size: 11px;
- line-height: 10px;
- padding: 1.5px 1.5px 1.5px 2.5px;
- border-radius: 12px;
- width: 10px;
- display: inline-block;
- border: 1px solid #e9e9e9;
- &:hover {
- background-color: #f2ab9a;
- border: 1px solid #ec8972;
- text-decoration: none;
- color: #e45735;
- }
- }
- div.ac-wrap {
- width: 98.5% !important;
- overflow: auto;
- max-height: 150px;
- background-color: white;
- border: 1px solid #e9e9e9;
- padding: 5px 4px 1px 4px;
- div.item {
- float: left;
- margin-bottom: 4px;
- margin-right: 10px;
- span {
- height: 24px;
- display: inline-block;
- line-height: 20px;
- }
- }
- .ac-collapsed-button {
- float: left;
- border-radius: 20px;
- position: relative;
- top: -2px;
- margin-right: 10px;
- }
- input[type="text"] {
- float: left;
- margin-bottom: 4px;
- height: 24px;
- display: block;
- border: 0;
- padding: 0;
- box-shadow: none;
- }
- }
- }
- img.avatar {
- border-radius: 50%;
- vertical-align: middle;
- }
- .autocomplete {
- z-index: 999999;
- position: absolute;
- width: 240px;
- background-color: white;
- border: 1px solid #e9e9e9;
- ul {
- list-style: none;
- padding: 0;
- margin: 0;
- li {
- .d-users {
- color: #333;
- padding: 0 2px;
- }
- border-bottom: 1px solid #e9e9e9;
- a {
- padding: 5px;
- display: block;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 14px;
- text-decoration: none;
- img {
- margin-right: 5px;
- }
- span.username {
- color: #000;
- vertical-align: middle;
- }
- span.name {
- font-size: 11px;
- vertical-align: middle;
- }
- &.selected {
- background-color: #d1f0ff;
- }
- &:hover {
- background-color: #ffffa6;
- text-decoration: none;
- }
- }
- }
- }
- }
- .checkbox-field.invalid .input-area {
- padding: 3px;
- border: 4px solid red;
- }
- @keyframes rotate-forever {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .p-text {
- &.bronze {
- color: #cd7f32;
- }
- &.silver {
- color: #c0c0c0;
- }
- &.gold {
- color: rgb(231, 195, 0);
- }
- }
|