| 1 |
/*Search For Icons*/ |
| 2 |
.borderless-postbox-search .search-icon { |
| 3 |
padding: 10px; |
| 4 |
} |
| 5 |
.borderless-postbox-search.postbox .search-icon { |
| 6 |
width: 100%; |
| 7 |
} |
| 8 |
.borderless-postbox-search.postbox .search-area { |
| 9 |
margin: 1em; |
| 10 |
} |
| 11 |
.borderless-postbox-search.postbox .search-count-open { |
| 12 |
margin-top: 1em; |
| 13 |
display: flex; |
| 14 |
align-items: center; |
| 15 |
} |
| 16 |
.borderless-postbox-search.postbox .search-count a { |
| 17 |
margin-left: 1em; |
| 18 |
} |
| 19 |
.borderless-postbox-search.postbox .inside { |
| 20 |
padding: 0; |
| 21 |
margin: 0; |
| 22 |
} |
| 23 |
|
| 24 |
/* Add New Pack Button */ |
| 25 |
|
| 26 |
.borderless-upload-icon { |
| 27 |
float: right; |
| 28 |
} |
| 29 |
|
| 30 |
/*Icon Manager*/ |
| 31 |
.borderless-postbox-icon-manager { |
| 32 |
/* Tooltip */ |
| 33 |
} |
| 34 |
.borderless-postbox-icon-manager .borderless_icon li { |
| 35 |
float: left; |
| 36 |
width: 6rem; |
| 37 |
height: 6rem; |
| 38 |
text-align: center; |
| 39 |
display: block; |
| 40 |
margin: 0; |
| 41 |
} |
| 42 |
.borderless-postbox-icon-manager .borderless_icon li > i { |
| 43 |
color: #000; |
| 44 |
font-size: 3rem; |
| 45 |
vertical-align: text-bottom; |
| 46 |
display: inline-block; |
| 47 |
line-height: 6rem; |
| 48 |
transition: all .1s linear; |
| 49 |
-moz-transition: all .1s linear; |
| 50 |
-webkit-transition: all .1s linear; |
| 51 |
} |
| 52 |
.borderless-postbox-icon-manager .borderless_icon li:hover > i { |
| 53 |
font-size: 4rem; |
| 54 |
} |
| 55 |
.borderless-postbox-icon-manager .borderless_icon li label { |
| 56 |
display: none; |
| 57 |
} |
| 58 |
.borderless-postbox-icon-manager .icon_search { |
| 59 |
width: 100%; |
| 60 |
height: 100%; |
| 61 |
height: auto; |
| 62 |
overflow: hidden; |
| 63 |
} |
| 64 |
.borderless-postbox-icon-manager .icon_search > ul { |
| 65 |
margin: 0; |
| 66 |
} |
| 67 |
.borderless-postbox-icon-manager [class^="icon_set-"], .borderless-postbox-icon-manager [class*=" icon_set-"] { |
| 68 |
width: 100%; |
| 69 |
float: left; |
| 70 |
} |
| 71 |
.borderless-postbox-icon-manager .fonts-count { |
| 72 |
display: inline-block; |
| 73 |
font-size: 12px; |
| 74 |
line-height: 17px; |
| 75 |
font-weight: 600; |
| 76 |
vertical-align: middle; |
| 77 |
-webkit-border-radius: 10px; |
| 78 |
border-radius: 10px; |
| 79 |
z-index: 26; |
| 80 |
padding: 0 6px; |
| 81 |
margin-left: 10px; |
| 82 |
} |
| 83 |
.borderless-postbox-icon-manager .ip_name { |
| 84 |
padding-bottom: 12px; |
| 85 |
border-bottom: 1px solid #DDD; |
| 86 |
margin-bottom: 10px; |
| 87 |
} |
| 88 |
.borderless-postbox-icon-manager .ip_name button { |
| 89 |
margin-top: -2px !important; |
| 90 |
float: right; |
| 91 |
} |
| 92 |
.borderless-postbox-icon-manager.postbox .inside { |
| 93 |
padding: 0; |
| 94 |
margin: 0; |
| 95 |
} |
| 96 |
.borderless-postbox-icon-manager a.tooltips { |
| 97 |
position: relative; |
| 98 |
display: block; |
| 99 |
height: 6rem; |
| 100 |
width: 6rem; |
| 101 |
margin-top: -4.5rem; |
| 102 |
} |
| 103 |
.borderless-postbox-icon-manager a.tooltips span { |
| 104 |
position: absolute; |
| 105 |
width: 140px; |
| 106 |
color: #FFFFFF; |
| 107 |
background: #23282d; |
| 108 |
height: 30px; |
| 109 |
line-height: 30px; |
| 110 |
text-align: center; |
| 111 |
visibility: hidden; |
| 112 |
border-radius: 3px; |
| 113 |
} |
| 114 |
.borderless-postbox-icon-manager a.tooltips span:after { |
| 115 |
content: ''; |
| 116 |
position: absolute; |
| 117 |
bottom: 100%; |
| 118 |
left: 50%; |
| 119 |
margin-left: -8px; |
| 120 |
width: 0; |
| 121 |
height: 0; |
| 122 |
border-bottom: 8px solid #23282d; |
| 123 |
border-right: 8px solid transparent; |
| 124 |
border-left: 8px solid transparent; |
| 125 |
} |
| 126 |
.borderless-postbox-icon-manager a:hover.tooltips span { |
| 127 |
visibility: visible; |
| 128 |
top: 4rem; |
| 129 |
left: 50%; |
| 130 |
margin-left: -4.3rem; |
| 131 |
z-index: 999; |
| 132 |
} |
| 133 |
|
| 134 |
@media (max-width: 768px) { |
| 135 |
.borderless-postbox-icon-manager .icon_search { |
| 136 |
max-height: 10rem; |
| 137 |
overflow: scroll; |
| 138 |
overflow-x: hidden; |
| 139 |
} |
| 140 |
} |
| 141 |
@media (max-width: 768px) { |
| 142 |
.borderless-postbox-icon-manager .ip_name button { |
| 143 |
margin-top: -7px !important; |
| 144 |
} |
| 145 |
} |
| 146 |
|