| 1 |
/* Notice CSS */ |
| 2 |
/* review notice */ |
| 3 |
.wpdeveloper-review-notice { |
| 4 |
padding: 10px; |
| 5 |
background-color: #fff; |
| 6 |
border-radius: 3px; |
| 7 |
margin: 15px; |
| 8 |
border-left: 4px solid transparent; |
| 9 |
display: flex; |
| 10 |
align-items: center; |
| 11 |
} |
| 12 |
|
| 13 |
.wpdeveloper-review-notice:after { |
| 14 |
content: ''; |
| 15 |
display: table; |
| 16 |
clear: both; |
| 17 |
} |
| 18 |
|
| 19 |
.wpdeveloper-notice-thumbnail { |
| 20 |
width: 90px; |
| 21 |
float: left; |
| 22 |
padding: 5px; |
| 23 |
text-align: center; |
| 24 |
border-right: 4px solid transparent; |
| 25 |
} |
| 26 |
|
| 27 |
.wpdeveloper-notice-thumbnail img { |
| 28 |
width: 72px; |
| 29 |
opacity: .85; |
| 30 |
transition: all .3s; |
| 31 |
} |
| 32 |
|
| 33 |
.wpdeveloper-upsale-notice .wpdeveloper-notice-thumbnail img { |
| 34 |
width: 50px; |
| 35 |
padding: 10px; |
| 36 |
} |
| 37 |
|
| 38 |
.wpdeveloper-notice-thumbnail img:hover { |
| 39 |
opacity: 1; |
| 40 |
} |
| 41 |
|
| 42 |
.eael-review-text { |
| 43 |
overflow: hidden; |
| 44 |
} |
| 45 |
|
| 46 |
.eael-review-text h3 { |
| 47 |
font-size: 24px; |
| 48 |
margin: 0 0 5px; |
| 49 |
font-weight: 400; |
| 50 |
line-height: 1.3; |
| 51 |
} |
| 52 |
|
| 53 |
.eael-review-text p { |
| 54 |
font-size: 13px; |
| 55 |
margin: 0 0 5px; |
| 56 |
} |
| 57 |
|
| 58 |
.wpdeveloper-notice-link { |
| 59 |
margin: 8px 0 0 0; |
| 60 |
padding: 0; |
| 61 |
} |
| 62 |
|
| 63 |
.wpdeveloper-notice-link li { |
| 64 |
display: inline-block; |
| 65 |
margin-right: 15px; |
| 66 |
} |
| 67 |
|
| 68 |
.wpdeveloper-notice-link li a { |
| 69 |
display: inline-block; |
| 70 |
color: #10738B; |
| 71 |
text-decoration: none; |
| 72 |
padding-left: 26px; |
| 73 |
position: relative; |
| 74 |
} |
| 75 |
|
| 76 |
.wpdeveloper-notice-link li a span { |
| 77 |
position: absolute; |
| 78 |
left: 0; |
| 79 |
top: -2px; |
| 80 |
} |
| 81 |
|
| 82 |
.wpdeveloper-notice-message { |
| 83 |
padding: 10px 0; |
| 84 |
} |
| 85 |
|
| 86 |
.wpdeveloper-upsale-notice .wpdeveloper-notice-message { |
| 87 |
display: flex; |
| 88 |
align-items: center; |
| 89 |
padding: 10px 0; |
| 90 |
} |
| 91 |
|
| 92 |
.wpdeveloper-upsale-notice .wpdeveloper-notice-message+.notice-dismiss { |
| 93 |
top: 18px; |
| 94 |
} |
| 95 |
|
| 96 |
.wpdeveloper-upsale-notice #plugin-install-core { |
| 97 |
margin-left: 10px; |
| 98 |
} |
| 99 |
|
| 100 |
.notice.notice-has-thumbnail { |
| 101 |
padding-left: 0px; |
| 102 |
} |
| 103 |
|
| 104 |
.wpdeveloper-upsale-notice { |
| 105 |
display: flex; |
| 106 |
} |
| 107 |
|
| 108 |
.wpdeveloper-upsale-notice .wpdeveloper-notice-thumbnail { |
| 109 |
padding: 0; |
| 110 |
width: 80px; |
| 111 |
} |
| 112 |
|
| 113 |
.wp-core-ui .doc-category-kb[multiple] { |
| 114 |
padding: 10px 0; |
| 115 |
min-width: 300px; |
| 116 |
} |
| 117 |
|
| 118 |
.doc-category-kb option { |
| 119 |
padding: 10px; |
| 120 |
} |
| 121 |
|
| 122 |
#taxonomy-knowledge_base #knowledge_base-add-toggle { |
| 123 |
display: none; |
| 124 |
} |
| 125 |
/* Notice CSS End */ |