balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

editor.scss (1834B)


      1 #redux-templatesImportCollectionBtn {
      2     vertical-align: middle;
      3     display: inline-flex;
      4     align-items: center;
      5     text-decoration: none;
      6     border: 1px solid rgb(186, 186, 186);
      7     border-radius: 3px;
      8     white-space: nowrap;
      9     color: #555d66;
     10     font-size: 13px;
     11     margin: 0 15px 0 15px;
     12     padding: 9px 12px;
     13     background: transparent;
     14 
     15 
     16     cursor: pointer;
     17     -webkit-appearance: none;
     18     transition: 400ms;
     19 
     20     svg {
     21         height: 16px;
     22         width: 16px;
     23         margin-right: 8px;
     24 
     25         * {
     26             stroke: #555d66;
     27             fill: #555d66;
     28             stroke-width: 0;
     29         }
     30     }
     31 
     32     &:hover,
     33     &:focus,
     34     &:active {
     35         text-decoration: none;
     36         border: 1px solid #191e23;
     37         color: #191e23;
     38 
     39         svg * {
     40             stroke: #191e23 !important;
     41             fill: #191e23 !important;
     42             stroke-width: 0;
     43         }
     44     }
     45 
     46 }
     47 
     48 // Common
     49 .redux-templates-editor-btn {
     50     background: none;
     51     border: 0;
     52     color: inherit;
     53     font: inherit;
     54     line-height: normal;
     55     overflow: visible;
     56     padding: 0;
     57     -webkit-appearance: button;
     58     -webkit-user-select: none;
     59     -moz-user-select: none;
     60     -ms-user-select: none;
     61 
     62     &::-moz-focus-inner {
     63         border: 0;
     64         padding: 0;
     65     }
     66 }
     67 
     68 .d-flex {
     69     display: flex;
     70 }
     71 
     72 .justify-content-center {
     73     justify-content: center;
     74 }
     75 
     76 // Hide Qubely Library
     77 //.qubely-import-layout-btn-container,
     78 //#qubelyImportLayoutBtn,
     79 //.gutentor-export-button,
     80 //#getwid-layout-insert-button,
     81 //.kb-toolbar-insert-layout,
     82 //.edit-post-header .gutentor-import-button,
     83 ////#AMPBlocksImportLayoutBtn,
     84 //.ab-toolbar-insert-layout {
     85 //    display: none !important;
     86 //}
     87 
     88 .redux-css-editor {
     89     border: 1px solid #e2e4e7;
     90     margin-bottom: 20px;
     91 }
     92 
     93 .redux-css-editor-help {
     94     background: #f7f7f7;
     95     padding: 20px;
     96 }