| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- $whiteBackground: #ececec;
- $primary: #2c54ac;
- $primaryLight: #d7dcef;
- $primaryActive: #1e5cb2;
- $secondary: #fcac04;
- $secondaryLight: #f8b014;
- $secondaryActive: #fdb51c;
- $hoverButtonText: #2c54ac;
- $activeButtonText: #fff;
- $textColor: #555;
- $optionalButtonHover: $primary;
- $optionalButtonActive: $primaryLight;
- $deleteButtonColorHover: #b00e5b;
- $deleteButtonColorActive: #b11661;
- $backButtonBackground: #DFDEDD;
- $backButtonBackgroundHover: #999;
- $transition: all 200ms cubic-bezier(0.4, 0.1, 0.5, 0.85);
- $errorColor: #BE5ABF;
- .content .edit-template {
- padding-bottom: 2rem;
- .toolbar {
- justify-content: unset;
-
- > div {
- width: 14.3%;
- display: flex;
- align-items: center;
- }
-
- div.error,
- div.success {
- width: fit-content !important;
-
- span {
- font-weight: bold;
- font-size: 14px;
-
- svg {
- font-size: 13px;
- }
- }
-
- span.error-message {
- color: $errorColor;
-
- svg {
- margin-right: 7px;
- font-size: 13px;
- color: $errorColor;
- }
- }
-
- span.ok-message {
- color: $primary;
-
- svg {
- color: $primary;
- }
- }
- }
-
- .search-toolbar-name {
- padding: 10px 0;
- margin-left: 0;
- }
- }
- }
- .hide {
- display: none;
- }
- .show {
- display: flex;
- }
- .edit-item,
- .login-layout {
- display: flex;
- font-size: 15px;
- margin-top: 3rem;
- margin-bottom: 1rem;
- .l-col {
- margin-right: 1.75%;
- }
- form {
- button,
- a {
- color:$primary;
- font-weight: bold;
-
- &:hover {
- color: $secondaryLight;
- }
-
- &:active {
- color: $secondaryActive;
- }
- }
- button.optional {
- &:hover {
- color: $optionalButtonHover;
- }
- &:active {
- color: $optionalButtonActive;
- }
- }
- button.delete {
- &:hover {
- color: $deleteButtonColorHover;
- }
- &:active {
- color: $deleteButtonColorActive;
- }
- }
- .form-group {
- input[type=text],
- input[type=password],
- input[type=email],
- textarea,
- select {
- width: 50%;
- }
- }
- width: 100%;
- .form-group select,
- .form-group textarea {
- border-radius: 0;
- &:hover {
- border-color: #909090;
- }
- &:focus,
- &:active {
- outline: none;
- border-color: $primaryActive;
- box-shadow: unset;
- }
- }
- textarea {
- &:focus {
- background: #D7F9FF;
- }
- }
- button {
- background: unset;
- border: none;
- box-shadow: unset;
-
- &:focus,
- &:active {
- outline: none;
- }
- }
-
- input {
- height: calc(1.5em + 0.75rem + 6px);
- border-radius: 0;
- &:hover {
- border-color: #909090;
- }
- &:focus,
- &:active {
- box-shadow: unset;
- border-color: $primaryActive;
- background: #D7F9FF;
- }
- }
-
- label {
- color: $textColor;
- font-weight: bold;
- }
-
- label.label-wrapper {
- display: flex;
- align-items: flex-end;
- width: fit-content;
- span {
- font-weight: normal;
- text-transform: uppercase;
- margin-left: 5px;
- font-size: 12px;
- }
- }
- .checkbox-wrapper {
- display: flex;
- align-items: center;
- label {
- margin: 0 12px;
- }
- }
- input {
- color: $textColor;
- }
- .buttons-wrapper {
- margin-top: 2.5rem;
- button {
- font-weight: bold;
- font-size: 13px;
- margin-right: 10px;
- padding: .35rem 2.25rem;
- border-radius: 4px;
- transition: $transition;
- }
- .add {
- color: $activeButtonText;
- background: $primary;
- &:hover {
- color: $hoverButtonText;
- background: $primaryLight;
- }
-
- &:active {
- color: $activeButtonText;
- background: $primaryActive;
- }
- }
- .back {
- color: #777;
- background: $backButtonBackground;
- &:hover {
- color: white;
- background: $backButtonBackgroundHover;
- }
- }
- }
- }
- .l-col {
- padding: 20px 0 0;
- .date,
- .time {
- margin: 10px 0 0;
- color: #777;
- font-size: 12px;
- letter-spacing: 1px;
- }
- .time {
- margin: 6px 0 10px;
- }
- .status {
- color: $primary;
- font-size: 11px;
- letter-spacing: 1px;
- text-transform: uppercase;
- font-weight: bold;
- }
- }
- }
|