| 1 |
/*-- Codestar Framework --*/ |
| 2 |
.csf-field .csf-title { |
| 3 |
width: 25%; |
| 4 |
} |
| 5 |
|
| 6 |
.csf-field .csf-fieldset { |
| 7 |
float: right; |
| 8 |
width: calc(70% - 20px); |
| 9 |
} |
| 10 |
|
| 11 |
.bbpc-core-main * { |
| 12 |
box-sizing: border-box; |
| 13 |
} |
| 14 |
|
| 15 |
.bbp-core-main .bbp-core-intro { |
| 16 |
font-size: 16px; |
| 17 |
} |
| 18 |
|
| 19 |
.bbpc-stat-cards { |
| 20 |
display: flex; |
| 21 |
gap: 30px; |
| 22 |
} |
| 23 |
|
| 24 |
.bbpc-stat-card { |
| 25 |
background-color: #fff; |
| 26 |
} |
| 27 |
|
| 28 |
.bbpc-dashboard { |
| 29 |
display: flex; |
| 30 |
} |
| 31 |
|
| 32 |
.bbpc-panel { |
| 33 |
width: 250px; |
| 34 |
border-right: 1px solid #ccc; |
| 35 |
margin-right: 20px; |
| 36 |
} |
| 37 |
|
| 38 |
.bbpc-logo { |
| 39 |
margin-bottom: 50px; |
| 40 |
} |
| 41 |
|
| 42 |
.bbpc-stats { |
| 43 |
flex-basis: 3; |
| 44 |
} |
| 45 |
|
| 46 |
.bbpc-heading { |
| 47 |
margin-bottom: 60px; |
| 48 |
} |
| 49 |
|
| 50 |
.bbpc-card-heading h2 { |
| 51 |
margin: 0; |
| 52 |
background: #ddd; |
| 53 |
padding: 10px; |
| 54 |
line-height: 1; |
| 55 |
} |
| 56 |
|
| 57 |
.bbp-core-settings { |
| 58 |
max-width: 960px; |
| 59 |
} |
| 60 |
|
| 61 |
/* Menu */ |
| 62 |
.bbpc-group-menu li a { |
| 63 |
border: 1px solid #6831c1; |
| 64 |
background: #6831c1; |
| 65 |
color: #fff; |
| 66 |
text-decoration: none; |
| 67 |
box-sizing: border-box; |
| 68 |
display: block; |
| 69 |
font-size: 15px; |
| 70 |
width: calc(100% - 20px); |
| 71 |
padding: 10px 20px; |
| 72 |
font-weight: 500; |
| 73 |
letter-spacing: 0px; |
| 74 |
} |
| 75 |
|
| 76 |
.bbpc-card-data { |
| 77 |
padding: 15px 25px; |
| 78 |
} |
| 79 |
|
| 80 |
.forum-info { |
| 81 |
display: flex; |
| 82 |
flex-wrap: wrap; |
| 83 |
} |
| 84 |
|
| 85 |
.forum-info li { |
| 86 |
flex: 50%; |
| 87 |
margin-bottom: 20px; |
| 88 |
font-size: 14px; |
| 89 |
border-bottom: 1px solid #ccc; |
| 90 |
padding-bottom: 18px; |
| 91 |
} |
| 92 |
|
| 93 |
.forum-info li:last-child { |
| 94 |
border-bottom: none; |
| 95 |
padding-bottom: 0; |
| 96 |
margin-bottom: 0; |
| 97 |
} |
| 98 |
|
| 99 |
#bbpc-forum { |
| 100 |
transition: 0.3s all ease; |
| 101 |
} |
| 102 |
|
| 103 |
#bbpc-forum:hover { |
| 104 |
color: var(--clr-white); |
| 105 |
} |
| 106 |
|
| 107 |
.easydocs-navitem .title img { |
| 108 |
max-height: 25px; |
| 109 |
max-width: 25px; |
| 110 |
} |
| 111 |
|
| 112 |
.bbpc-trash-filter { |
| 113 |
border-radius: 1.875rem; |
| 114 |
margin-bottom: 0; |
| 115 |
background-color: rgba(212, 23, 23, 0.1); |
| 116 |
} |
| 117 |
.bbpc-trash-filter svg { |
| 118 |
fill: #d41717; |
| 119 |
} |
| 120 |
.bbpc-trash-filter a { |
| 121 |
justify-content: center; |
| 122 |
gap: 0.3125rem; |
| 123 |
padding: 0.25rem 0.75rem; |
| 124 |
font-size: 14px; |
| 125 |
display: flex; |
| 126 |
align-items: center; |
| 127 |
text-decoration: none; |
| 128 |
color: #d41717; |
| 129 |
} |
| 130 |
.bbpc-trash-filter:hover { |
| 131 |
text-decoration: underline; |
| 132 |
text-underline-offset: 2px; |
| 133 |
} |
| 134 |
|
| 135 |
.bbpc-settings-icon { |
| 136 |
background: rgba(0, 0, 255, 0.058); |
| 137 |
padding: 10px; |
| 138 |
border-radius: 50%; |
| 139 |
} |
| 140 |
|
| 141 |
.bbpc-approve-btn { |
| 142 |
margin-left: 7px; |
| 143 |
margin-right: 3px; |
| 144 |
border: 1px solid #2DB22D; |
| 145 |
color: #2DB22D; |
| 146 |
border-radius: 50%; |
| 147 |
} |
| 148 |
.bbpc-approve-btn:hover { |
| 149 |
border: 1px solid #07a207; |
| 150 |
color: #07a207; |
| 151 |
} |
| 152 |
|
| 153 |
.bbpc-filter-btn-settings .csf--sibling.csf--active { |
| 154 |
border: 1px solid #2DB22D; |
| 155 |
background-color: #2DB22D; |
| 156 |
} |
| 157 |
|
| 158 |
/*# sourceMappingURL=bbpc-admin.css.map */ |
| 159 |
|