| 1 |
#visualizer-icon { |
| 2 |
background-image: url('../images/icon.png'); |
| 3 |
} |
| 4 |
|
| 5 |
.visualizer-clearfix { |
| 6 |
*zoom: 1; |
| 7 |
} |
| 8 |
|
| 9 |
.visualizer-clearfix:before, |
| 10 |
.visualizer-clearfix:after { |
| 11 |
display: table; |
| 12 |
line-height: 0; |
| 13 |
content: ""; |
| 14 |
} |
| 15 |
|
| 16 |
.visualizer-clearfix:after { |
| 17 |
clear: both; |
| 18 |
} |
| 19 |
|
| 20 |
#visualizer-types { |
| 21 |
margin: 20px 0 10px; |
| 22 |
} |
| 23 |
|
| 24 |
#visualizer-library { |
| 25 |
margin: 20px 0; |
| 26 |
} |
| 27 |
|
| 28 |
.loader { |
| 29 |
position: absolute; |
| 30 |
left: 50%; |
| 31 |
top: 50%; |
| 32 |
margin-left: -16px; |
| 33 |
margin-top: -16px; |
| 34 |
} |
| 35 |
|
| 36 |
.visualizer-chart { |
| 37 |
float: left; |
| 38 |
padding: 5px; |
| 39 |
margin: 0 24px 24px 0; |
| 40 |
border: 1px solid #ddd; |
| 41 |
-webkit-box-shadow: 0px 0px 8px #ddd; |
| 42 |
box-shadow: 0px 0px 8px #ddd; |
| 43 |
background-color: #efefef; |
| 44 |
display: none; |
| 45 |
} |
| 46 |
|
| 47 |
.visualizer-chart-canvas { |
| 48 |
border: 1px solid #ddd; |
| 49 |
background-color: white; |
| 50 |
position: relative; |
| 51 |
width: 30%; |
| 52 |
height: 18.75%; |
| 53 |
} |
| 54 |
|
| 55 |
.visualizer-nochart-canvas { |
| 56 |
background-image: url('../images/notfound.png?v=4'); |
| 57 |
background-repeat: repeat; |
| 58 |
} |
| 59 |
|
| 60 |
.visualizer-notfound { |
| 61 |
text-align: center; |
| 62 |
font-weight: bold; |
| 63 |
font-size: 14px; |
| 64 |
margin-top: -7px; |
| 65 |
position: absolute; |
| 66 |
top: 50%; |
| 67 |
left: 0; |
| 68 |
right: 0; |
| 69 |
} |
| 70 |
|
| 71 |
.visualizer-chart-action { |
| 72 |
float: right; |
| 73 |
display: block; |
| 74 |
height: 16px; |
| 75 |
width: 16px; |
| 76 |
background-repeat: no-repeat; |
| 77 |
background-image: url('../images/ui-icons.png'); |
| 78 |
margin: 2px 5px 0; |
| 79 |
} |
| 80 |
|
| 81 |
.visualizer-nochart-delete, |
| 82 |
.visualizer-chart-delete { |
| 83 |
background-position: -176px -96px; |
| 84 |
} |
| 85 |
|
| 86 |
.visualizer-nochart-clone, |
| 87 |
.visualizer-chart-clone { |
| 88 |
background-position: -176px -128px; |
| 89 |
} |
| 90 |
|
| 91 |
.visualizer-nochart-edit, |
| 92 |
.visualizer-chart-edit { |
| 93 |
background-position: -64px -112px; |
| 94 |
} |
| 95 |
|
| 96 |
.visualizer-nochart-clone, |
| 97 |
.visualizer-nochart-delete, |
| 98 |
.visualizer-nochart-edit { |
| 99 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; |
| 100 |
filter: alpha(opacity=50); |
| 101 |
opacity: 0.5 |
| 102 |
} |
| 103 |
|
| 104 |
.visualizer-chart-footer { |
| 105 |
margin-top: 4px; |
| 106 |
} |
| 107 |
|
| 108 |
.visualizer-chart-shortcode { |
| 109 |
color: #aaa; |
| 110 |
text-shadow: 0 1px 0 #fff; |
| 111 |
cursor: pointer; |
| 112 |
padding: 3px 0; |
| 113 |
} |
| 114 |
|
| 115 |
.visualizer-chart-shortcode::selection, |
| 116 |
.visualizer-chart-shortcode::-moz-selection { |
| 117 |
background-color: #a8d1ff; |
| 118 |
color: black; |
| 119 |
text-shadow: none; |
| 120 |
} |
| 121 |
|
| 122 |
.visualizer-list-item { |
| 123 |
float: left; |
| 124 |
margin-right: 20px; |
| 125 |
} |
| 126 |
|
| 127 |
.page-numbers { |
| 128 |
padding: 5px 10px; |
| 129 |
background-color: #aaa; |
| 130 |
color: white !important; |
| 131 |
text-decoration: none; |
| 132 |
border-radius: 2px; |
| 133 |
box-shadow: 0 0 5px #ccc; |
| 134 |
font-weight: bold; |
| 135 |
} |
| 136 |
|
| 137 |
.page-numbers.current, |
| 138 |
a.page-numbers:hover { |
| 139 |
background-color: lightcoral; |
| 140 |
box-shadow: 0 0 5px lightpink; |
| 141 |
} |
| 142 |
|