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