| 1 |
.vbo-tinymce-backdrop { |
| 2 |
display: block; |
| 3 |
position: fixed; |
| 4 |
top: 0; |
| 5 |
left: 0; |
| 6 |
right: 0; |
| 7 |
bottom: 0; |
| 8 |
min-height: 360px; |
| 9 |
background: #000; |
| 10 |
opacity: .7; |
| 11 |
filter: alpha(opacity=70); |
| 12 |
z-index: 100100; |
| 13 |
} |
| 14 |
.vbo-tinymce-modal { |
| 15 |
display: block; |
| 16 |
background-color: #fff; |
| 17 |
width: 500px; |
| 18 |
overflow: hidden; |
| 19 |
margin-left: -250px; |
| 20 |
position: fixed; |
| 21 |
top: 50%; |
| 22 |
left: 50%; |
| 23 |
z-index: 100105; |
| 24 |
transition: height .2s,margin-top .2s; |
| 25 |
height: 500px; |
| 26 |
margin-top: -250px; |
| 27 |
box-shadow: 0 3px 6px rgba(0,0,0,.3); |
| 28 |
} |
| 29 |
.vbo-tinymce-modal form { |
| 30 |
position: relative; |
| 31 |
height: 100%; |
| 32 |
} |
| 33 |
.vbo-tinymce-modal form h1 { |
| 34 |
background: #fcfcfc; |
| 35 |
border-bottom: 1px solid #ddd; |
| 36 |
height: 36px; |
| 37 |
font-size: 18px; |
| 38 |
font-weight: 600; |
| 39 |
line-height: 36px; |
| 40 |
margin: 0; |
| 41 |
padding: 0 36px 0 16px; |
| 42 |
} |
| 43 |
.vbo-tinymce-dismiss { |
| 44 |
color: #666; |
| 45 |
padding: 0; |
| 46 |
position: absolute; |
| 47 |
top: 0; |
| 48 |
right: 0; |
| 49 |
width: 36px; |
| 50 |
height: 36px; |
| 51 |
text-align: center; |
| 52 |
background: 0 0; |
| 53 |
border: none; |
| 54 |
cursor: pointer; |
| 55 |
} |
| 56 |
.vbo-tinymce-dismiss::before { |
| 57 |
font: 400 20px/36px dashicons; |
| 58 |
vertical-align: top; |
| 59 |
speak: none; |
| 60 |
-webkit-font-smoothing: antialiased; |
| 61 |
-moz-osx-font-smoothing: grayscale; |
| 62 |
width: 36px; |
| 63 |
height: 36px; |
| 64 |
content: "\f158"; |
| 65 |
} |
| 66 |
.vbo-tinymce-selector { |
| 67 |
-webkit-overflow-scrolling: touch; |
| 68 |
padding: 0 16px; |
| 69 |
position: absolute; |
| 70 |
top: 37px; |
| 71 |
left: 0; |
| 72 |
right: 0; |
| 73 |
bottom: 44px; |
| 74 |
} |
| 75 |
.vbo-tinymce-body { |
| 76 |
overflow-y: auto; |
| 77 |
height: calc(100% - 90px); |
| 78 |
} |
| 79 |
.vbo-tinymce-submitbox { |
| 80 |
padding: 8px 16px; |
| 81 |
background: #fcfcfc; |
| 82 |
border-top: 1px solid #ddd; |
| 83 |
position: absolute; |
| 84 |
bottom: 0; |
| 85 |
left: 0; |
| 86 |
right: 0; |
| 87 |
} |
| 88 |
#vbo-tinymce-cancel { |
| 89 |
line-height: 25px; |
| 90 |
float: left; |
| 91 |
} |
| 92 |
#vbo-tinymce-update { |
| 93 |
line-height: 23px; |
| 94 |
float: right; |
| 95 |
} |
| 96 |
|
| 97 |
.shortcodes-group { |
| 98 |
padding: 10px; |
| 99 |
border-bottom: 1px solid #ddd; |
| 100 |
font-weight: bold; |
| 101 |
} |
| 102 |
.shortcodes-group a { |
| 103 |
text-decoration: none; |
| 104 |
} |
| 105 |
|
| 106 |
.shortcodes-container { |
| 107 |
display: none; |
| 108 |
} |
| 109 |
|
| 110 |
.shortcode-record { |
| 111 |
padding: 10px; |
| 112 |
border-bottom: 1px solid #ddd; |
| 113 |
background: #f9f9f9; |
| 114 |
} |
| 115 |
.shortcode-record:hover { |
| 116 |
cursor: pointer; |
| 117 |
} |
| 118 |
.shortcode-record.selected { |
| 119 |
background: #eee; |
| 120 |
} |
| 121 |
|
| 122 |
.shortcode-record .subdetails { |
| 123 |
height: 16px; |
| 124 |
} |
| 125 |
.shortcode-record .subdetails small.postid { |
| 126 |
float: right; |
| 127 |
} |
| 128 |
.shortcode-record .subdetails small.createdon { |
| 129 |
float: left; |
| 130 |
} |
| 131 |
|