| @@ -1,6 +1,167 @@ | ||
| 1 | -@import "partials/variables"; | |
| 2 | -@import "partials/alerts"; | |
| 3 | -@import "partials/tabs"; | |
| 4 | -@import "partials/content"; | |
| 5 | -@import "partials/form_builder"; | |
| 6 | -@import "images"; | |
| 1 | +.button-primary.uwp-advanced-toggle{ | |
| 2 | + float: right; | |
| 3 | + margin: 10px; | |
| 4 | +} | |
| 5 | + | |
| 6 | +.single_select_page { | |
| 7 | + .select2-container { | |
| 8 | + display: inline-block; | |
| 9 | + } | |
| 10 | +} | |
| 11 | + | |
| 12 | +/* tooltip css */ | |
| 13 | + | |
| 14 | +.uwp-tooltip-wrap { | |
| 15 | + position: relative; | |
| 16 | + text-align: left; | |
| 17 | + -webkit-transform: translateZ(0); /* webkit flicker fix */ | |
| 18 | + -webkit-font-smoothing: antialiased; /* webkit text rendering fix */ | |
| 19 | + width:100%; | |
| 20 | + display: block; | |
| 21 | +} | |
| 22 | + | |
| 23 | +/* IE can just show/hide with no transition */ | |
| 24 | +.lte8 { | |
| 25 | + .uwp-tooltip-wrap { | |
| 26 | + .uwp-tooltip { | |
| 27 | + display: none; | |
| 28 | + } | |
| 29 | + } | |
| 30 | +} | |
| 31 | + | |
| 32 | +.uwp-ui-tooltip { | |
| 33 | + padding: 7px; | |
| 34 | + position: absolute; | |
| 35 | + z-index: 9999; | |
| 36 | + max-width: 300px; | |
| 37 | + background: #333 !important; | |
| 38 | + border-radius: 3px !important; | |
| 39 | + -webkit-box-shadow: 1px 1px 2px 1px rgba(214,214,214,0.5); | |
| 40 | + box-shadow: 1px 1px 2px 1px rgba(214,214,214,0.5); | |
| 41 | + color: #dedede !important; | |
| 42 | + text-rendering: optimizeLegibility; | |
| 43 | + text-shadow: none !important; | |
| 44 | + white-space: pre-line; /* show line breaks */ | |
| 45 | + word-wrap:break-word; | |
| 46 | + border-width: 1px; | |
| 47 | +} | |
| 48 | + | |
| 49 | +.uwp-help-tip { | |
| 50 | + cursor: help; | |
| 51 | +} | |
| 52 | + | |
| 53 | +.uwp-settings-title .uwp-help-tip { | |
| 54 | + | |
| 55 | +} | |
| 56 | + | |
| 57 | +.uwp-upload-fields { | |
| 58 | + float: left; | |
| 59 | + margin-left: 12px; | |
| 60 | +} | |
| 61 | + | |
| 62 | +.uwp-upload-display.thumbnail { | |
| 63 | + float: left; | |
| 64 | + min-width: 25px; | |
| 65 | + min-height: 25px; | |
| 66 | +} | |
| 67 | + | |
| 68 | +.uwp-upload-img { | |
| 69 | + .centered { | |
| 70 | + width: 100%; | |
| 71 | + height: 100%; | |
| 72 | + text-align: center; | |
| 73 | + vertical-align: middle; | |
| 74 | + } | |
| 75 | +} | |
| 76 | + | |
| 77 | +.uwp-upload-display img { | |
| 78 | + max-height: 100px; | |
| 79 | + max-width: 100px; | |
| 80 | + vertical-align: middle; | |
| 81 | + margin: auto; | |
| 82 | +} | |
| 83 | + | |
| 84 | +.uwp-pb-wrapper { | |
| 85 | + .progressBar { | |
| 86 | + height: 20px; | |
| 87 | + margin-bottom: 20px; | |
| 88 | + overflow: hidden; | |
| 89 | + background-color: #f5f5f5; | |
| 90 | + border-radius: 4px; | |
| 91 | + -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1); | |
| 92 | + box-shadow: inset 0 1px 2px rgba(0,0,0,.1); | |
| 93 | + border: none; | |
| 94 | + div { | |
| 95 | + float: left; | |
| 96 | + width: 0; | |
| 97 | + height: 100%; | |
| 98 | + font-size: 12px; | |
| 99 | + line-height: 20px; | |
| 100 | + color: #fff; | |
| 101 | + text-align: center; | |
| 102 | + background-color: #337ab7; | |
| 103 | + -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); | |
| 104 | + box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); | |
| 105 | + -webkit-transition: width .6s ease; | |
| 106 | + -o-transition: width .6s ease; | |
| 107 | + transition: width .6s ease; | |
| 108 | + } | |
| 109 | + } | |
| 110 | +} | |
| 111 | + | |
| 112 | +span.uwp-custom-desc code {position: relative;background-color: #e0e0e0;padding: 5px;margin: 2px;border-radius: 3px;color: #6d6d6d;cursor: pointer;border: 1px solid #e4e4e4;display: inline-block;} | |
| 113 | +span.uwp-custom-desc code.uwp-tag-copied:before {content: 'Copied';position: absolute;background: #000;color: #FFF;top: -30px;left: calc(50% - 35px);padding: 5px 10px;border-radius: 5px;font-style: normal;} | |
| 114 | +span.uwp-custom-desc code.uwp-tag-copied:after {content: " ";position: absolute;top: 100%;left: 50%;margin: -29px 0 0 -4px;margin-left: -5px;border-width: 5px;border-style: solid;border-color: black transparent transparent transparent;display: none;} | |
| 115 | +.uwp-tag-copied span {content: " ";position: absolute;top: 25px;left: 50%;margin: -29px 0 0 -4px;margin-left: -5px;border-width: 5px;border-style: solid;border-color: black transparent transparent transparent;} | |
| 116 | +.profile_seo_meta_separator-wrap td.forminp-radio ul li {display: inline-block;margin-right: 5px;} | |
| 117 | +.profile_seo_meta_separator-wrap td.forminp-radio ul li label input.uwp-seo-meta-separator {position: absolute;top: -20px;left: 0;} | |
| 118 | +.profile_seo_meta_separator-wrap td.forminp-radio ul li label {padding: 10px 15px;position: relative;vertical-align: middle;overflow: hidden;margin: 0px !important;border: 1px solid #CCC;margin-right: 10px;} | |
| 119 | +.profile_seo_meta_separator-wrap td.forminp-radio ul li label.active {border-color: #007bba;border-width: 2px;} | |
| 120 | + | |
| 121 | +.wp-list-table.usertypes, | |
| 122 | +.wp-list-table.membershiptypes { | |
| 123 | + .manage-column.column-reorder, | |
| 124 | + .reorder.column-reorder { | |
| 125 | + width: 5%; | |
| 126 | + text-align: center; | |
| 127 | + } | |
| 128 | +} | |
| 129 | + | |
| 130 | +/* Styles for the dragged item */ | |
| 131 | +.uwp-dragging { | |
| 132 | + background-color: #fff; | |
| 133 | + border: 1px solid #007cba; | |
| 134 | + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | |
| 135 | + opacity: 0.9; | |
| 136 | +} | |
| 137 | + | |
| 138 | +/* Styles for the placeholder */ | |
| 139 | +.uwp-drag-placeholder { | |
| 140 | + background-color: #f0f0f1; | |
| 141 | + border: 1px dashed #007cba; | |
| 142 | + visibility: visible !important; | |
| 143 | +} | |
| 144 | + | |
| 145 | +.wp-admin { | |
| 146 | + .single_select_page { | |
| 147 | + .select2-container { | |
| 148 | + width: 25em; | |
| 149 | + | |
| 150 | + @media only screen and (max-width: 600px) { | |
| 151 | + width: 100%; | |
| 152 | + margin-bottom: 0.5rem; | |
| 153 | + } | |
| 154 | + } | |
| 155 | + } | |
| 156 | + | |
| 157 | + .wrap.userswp { | |
| 158 | + .select2-selection--multiple { | |
| 159 | + .select2-selection__choice { | |
| 160 | + .select2-selection__choice__remove { | |
| 161 | + padding-right: 0; | |
| 162 | + } | |
| 163 | + } | |
| 164 | + } | |
| 165 | + } | |
| 166 | +} | |
| 167 | + | |