| 1 |
/** |
| 2 |
* Author: Alin Marcu |
| 3 |
* Author URI: https://deconf.com |
| 4 |
* Copyright 2013 Alin Marcu |
| 5 |
* License: GPLv2 or later |
| 6 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 7 |
*/ |
| 8 |
|
| 9 |
/* Backend Item Reports */ |
| 10 |
.column-cawp_stats { |
| 11 |
width: 30px; |
| 12 |
} |
| 13 |
|
| 14 |
.cawp-icon { |
| 15 |
color: #555; |
| 16 |
} |
| 17 |
|
| 18 |
.cawp-icon:hover { |
| 19 |
color: #2ea2cc; |
| 20 |
} |
| 21 |
|
| 22 |
.cawp-icon-oldwp { |
| 23 |
padding-top: 5px; |
| 24 |
} |
| 25 |
|
| 26 |
[id^=cawp-container-] { |
| 27 |
width: 400px; |
| 28 |
} |
| 29 |
|
| 30 |
[id^=cawp-areachart-] { |
| 31 |
height: 280px; |
| 32 |
} |
| 33 |
|
| 34 |
[id^=cawp-progressbar-] { |
| 35 |
width: 100%; |
| 36 |
height: 3px; |
| 37 |
clear: both; |
| 38 |
margin: 5px 0 0px 0; |
| 39 |
} |
| 40 |
|
| 41 |
[id^=cawp-summary-] { |
| 42 |
width: 100%; |
| 43 |
} |
| 44 |
|
| 45 |
[id^=cawp-summary-] .inside { |
| 46 |
display: table; |
| 47 |
margin: 0 1% 0 1%; |
| 48 |
min-width: 100%; |
| 49 |
padding: 0px; |
| 50 |
} |
| 51 |
|
| 52 |
[id^=cawp-summary-] .inside .small-box { |
| 53 |
margin-top: 10px; |
| 54 |
width: 24%; |
| 55 |
float: left; |
| 56 |
background: #fff; |
| 57 |
text-align: center; |
| 58 |
border: 1px solid; |
| 59 |
border-color: rgba(0, 0, 0, 0.25); |
| 60 |
border-right: 0px; |
| 61 |
} |
| 62 |
|
| 63 |
[id^=cawp-summary-] .inside .small-box.first { |
| 64 |
background: #E04747; |
| 65 |
} |
| 66 |
|
| 67 |
[id^=cawp-summary-] .inside .small-box.second { |
| 68 |
background: #673ab7; |
| 69 |
} |
| 70 |
|
| 71 |
[id^=cawp-summary-] .inside .small-box.third { |
| 72 |
background: #009688; |
| 73 |
} |
| 74 |
|
| 75 |
[id^=cawp-summary-] .inside .small-box.last { |
| 76 |
background: #366DC4; |
| 77 |
border-right: 1px solid; |
| 78 |
border-color: rgba(0, 0, 0, 0.25); |
| 79 |
} |
| 80 |
|
| 81 |
[id^=cawp-summary-] .inside .small-box h3 { |
| 82 |
font-size: 1em; |
| 83 |
color: white; |
| 84 |
padding: 5px 5px 0px 5px; |
| 85 |
margin: 0px 0px 0px 0px; |
| 86 |
text-overflow: ellipsis; |
| 87 |
overflow: hidden; |
| 88 |
white-space: nowrap; |
| 89 |
} |
| 90 |
|
| 91 |
[id^=cawp-summary-] .inside .small-box p { |
| 92 |
font-size: 1.2em; |
| 93 |
margin: 7px 0px 10px 0px; |
| 94 |
font-weight: 500; |
| 95 |
color: white; |
| 96 |
} |
| 97 |
|
| 98 |
.cawp-floatwraper { |
| 99 |
display: table; |
| 100 |
width: 100%; |
| 101 |
height: 100%; |
| 102 |
} |
| 103 |
|
| 104 |
[id^=cawp-piechart-].halfsize { |
| 105 |
width: 47%; |
| 106 |
margin: 10px 0 0 0; |
| 107 |
height: 200px; |
| 108 |
float: left; |
| 109 |
} |
| 110 |
|
| 111 |
[id^=cawp-piechart-].floatleft { |
| 112 |
float: left; |
| 113 |
} |
| 114 |
|
| 115 |
[id^=cawp-piechart-].floatright { |
| 116 |
float: right; |
| 117 |
} |
| 118 |
|
| 119 |
[id^=cawp-tablechart-] { |
| 120 |
line-height: 1.5em !important; |
| 121 |
width: 98%; |
| 122 |
height: 100%; |
| 123 |
margin: 2px auto 10px 0; |
| 124 |
} |
| 125 |
|
| 126 |
[id^=cawp-sel-period-], .cawp-dashboard-control input { |
| 127 |
-webkit-box-sizing: border-box !important; |
| 128 |
-moz-box-sizing: border-box !important; |
| 129 |
box-sizing: border-box !important; |
| 130 |
width:auto !important; |
| 131 |
font-size: 14px !important; |
| 132 |
height: 28px !important; |
| 133 |
float: left; |
| 134 |
color: #32373c; |
| 135 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 136 |
border: 1px solid #ddd !important; |
| 137 |
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ) !important; |
| 138 |
background-color: #fff !important; |
| 139 |
} |
| 140 |
|
| 141 |
[id^=cawp-sel-report-] { |
| 142 |
-webkit-box-sizing: border-box !important; |
| 143 |
-moz-box-sizing: border-box !important; |
| 144 |
box-sizing: border-box !important; |
| 145 |
width:auto !important; |
| 146 |
font-size: 14px !important; |
| 147 |
margin-left: 5px; |
| 148 |
height: 28px !important; |
| 149 |
color: #32373c; |
| 150 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 151 |
border: 1px solid #ddd; |
| 152 |
box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 ); |
| 153 |
background-color: #fff; |
| 154 |
} |
| 155 |
|
| 156 |
.cawp-dashboard-control input { |
| 157 |
height: 20px !important; |
| 158 |
content: "Search ..."; |
| 159 |
} |
| 160 |
|
| 161 |
.cawp-dashboard-control input::placeholder { |
| 162 |
/* modern browser */ |
| 163 |
color: #999; |
| 164 |
} |
| 165 |
|
| 166 |
.ui-dialog.cawp { |
| 167 |
font-size: 13px; |
| 168 |
-webkit-box-sizing: initial; |
| 169 |
-moz-box-sizing: initial; |
| 170 |
} |
| 171 |
|
| 172 |
.ui-dialog.cawp table { |
| 173 |
margin: auto; |
| 174 |
width: auto; |
| 175 |
} |
| 176 |
|
| 177 |
.cawp .ui-dialog-titlebar { |
| 178 |
font-size: 1.1em; |
| 179 |
text-overflow: ellipsis; |
| 180 |
overflow: hidden; |
| 181 |
padding-top: 5px; |
| 182 |
} |
| 183 |
|
| 184 |
.cawp-orgchart{ |
| 185 |
border: 0px; |
| 186 |
border-radius: 10px; |
| 187 |
color: white; |
| 188 |
font-size: 1em !important; |
| 189 |
font-family: inherit !important; |
| 190 |
background-color: #2c5fb2; |
| 191 |
} |
| 192 |
|
| 193 |
.cawp-orgchart-selected{ |
| 194 |
border: 0px; |
| 195 |
border-radius: 10px; |
| 196 |
color: white; |
| 197 |
font-size: 1em !important; |
| 198 |
font-family: inherit !important; |
| 199 |
background-color: #3E7CE0; |
| 200 |
} |
| 201 |
|
| 202 |
@media screen and (max-width: 500px) { |
| 203 |
[id^=cawp-container-] { |
| 204 |
width: 400px; |
| 205 |
} |
| 206 |
[id^=cawp-summary-] .inside .small-box { |
| 207 |
width: 30.8%; |
| 208 |
} |
| 209 |
} |
| 210 |
|
| 211 |
@media screen and (max-width: 410px) { |
| 212 |
[id^=cawp-container-] { |
| 213 |
width: 260px; |
| 214 |
} |
| 215 |
[id^=cawp-summary-] .inside .small-box { |
| 216 |
width: 46%; |
| 217 |
} |
| 218 |
} |