Commit efd5f9741166067aa906415b15f68666d7559141
1 parent
139ef7fe
Exists in
master
and in
20 other branches
environment_notification: mv css to public folder
the plugin style was not being loaded also removed useless sym link
Showing
3 changed files
with
250 additions
and
251 deletions
Show diff stats
plugins/environment_notification/public/public
| ... | ... | @@ -0,0 +1,250 @@ |
| 1 | +.environment-notification-plugin-notification-bar{ | |
| 2 | + display: block; | |
| 3 | +} | |
| 4 | + | |
| 5 | +.environment-notification-plugin-notification-bar .notification:hover, | |
| 6 | +.environment-notification-plugin-notification-notification-modal .notification:hover{ | |
| 7 | + opacity: 0.8; | |
| 8 | +} | |
| 9 | + | |
| 10 | +#environment-notification-plugin-notification-manager{ | |
| 11 | + overflow: auto; | |
| 12 | +} | |
| 13 | + | |
| 14 | +.environment-notification-plugin-notification-bar .notification .notification-close, | |
| 15 | +.environment-notification-plugin-notification-notification-modal .notification .notification-close{ | |
| 16 | + background: url(images/close.png) no-repeat; | |
| 17 | + background-position: center; | |
| 18 | + width: 20px; | |
| 19 | + height: 20px; | |
| 20 | +} | |
| 21 | + | |
| 22 | +.environment-notification-plugin-notification-bar .warningnotification, | |
| 23 | +.environment-notification-plugin-notification-bar .informationnotification, | |
| 24 | +.environment-notification-plugin-notification-bar .successnotification, | |
| 25 | +.environment-notification-plugin-notification-bar .dangernotification, | |
| 26 | +.environment-notification-plugin-notification-bar .adminnotification, | |
| 27 | +.environment-notification-plugin-notification-notification-modal .warningnotification, | |
| 28 | +.environment-notification-plugin-notification-notification-modal .informationnotification, | |
| 29 | +.environment-notification-plugin-notification-notification-modal .successnotification, | |
| 30 | +.environment-notification-plugin-notification-notification-modal .dangernotification{ | |
| 31 | + margin-bottom: 10px; | |
| 32 | + padding: 7px 10px; | |
| 33 | + border-radius: 5px; | |
| 34 | + border: 1px solid blue; | |
| 35 | + font-size: 16px; | |
| 36 | + color: white; | |
| 37 | + overflow: auto; | |
| 38 | +} | |
| 39 | + | |
| 40 | +.environment-notification-plugin-notification-bar .warningnotification p, | |
| 41 | +.environment-notification-plugin-notification-bar .informationnotification p, | |
| 42 | +.environment-notification-plugin-notification-bar .successnotification p, | |
| 43 | +.environment-notification-plugin-notification-bar .dangernotification p, | |
| 44 | +.environment-notification-plugin-notification-bar .adminnotification p, | |
| 45 | +.environment-notification-plugin-notification-notification-modal .warningnotification p, | |
| 46 | +.environment-notification-plugin-notification-notification-modal .informationnotification p, | |
| 47 | +.environment-notification-plugin-notification-notification-modal .successnotification p, | |
| 48 | +.environment-notification-plugin-notification-notification-modal .dangernotification p{ | |
| 49 | + margin: 0px; | |
| 50 | +} | |
| 51 | + | |
| 52 | +.environment-notification-plugin-notification-bar .warningnotification, | |
| 53 | +.environment-notification-plugin-notification-notification-modal .warningnotification{ | |
| 54 | + background: #fcf8e3; | |
| 55 | + border: 1px solid #faebcc; | |
| 56 | + color: #8a6d3b; | |
| 57 | +} | |
| 58 | + | |
| 59 | +.environment-notification-plugin-notification-bar .warningnotification p a, | |
| 60 | +.environment-notification-plugin-notification-notification-modal .warningnotification p a{ | |
| 61 | + font-weight: bold; | |
| 62 | + color: #8a6d3b; | |
| 63 | +} | |
| 64 | + | |
| 65 | + | |
| 66 | +.environment-notification-plugin-notification-bar .informationnotification, | |
| 67 | +.environment-notification-plugin-notification-notification-modal .informationnotification{ | |
| 68 | + background: #d9edf7; | |
| 69 | + border: 1px solid #bce8f1; | |
| 70 | + color: #31708f; | |
| 71 | +} | |
| 72 | + | |
| 73 | +.environment-notification-plugin-notification-bar .informationnotification p a, | |
| 74 | +.environment-notification-plugin-notification-notification-modal .informationnotification p a{ | |
| 75 | + font-weight: bold; | |
| 76 | + color: #31708f; | |
| 77 | +} | |
| 78 | + | |
| 79 | +.environment-notification-plugin-notification-bar .successnotification, | |
| 80 | +.environment-notification-plugin-notification-notification-modal .successnotification{ | |
| 81 | + background: #dff0d8; | |
| 82 | + border: 1px solid #d6e9c6; | |
| 83 | + color: #3c763d; | |
| 84 | +} | |
| 85 | + | |
| 86 | +.environment-notification-plugin-notification-bar .successnotification p a | |
| 87 | +.environment-notification-plugin-notification-notification-modal .successnotification p a{ | |
| 88 | + font-weight: bold; | |
| 89 | + color: #3c763d; | |
| 90 | +} | |
| 91 | + | |
| 92 | +.environment-notification-plugin-notification-bar .dangernotification, | |
| 93 | +.environment-notification-plugin-notification-notification-modal .dangernotification{ | |
| 94 | + background: #f2dede; | |
| 95 | + border: 1px solid #ebccd1; | |
| 96 | + color: #a94442; | |
| 97 | +} | |
| 98 | + | |
| 99 | +.environment-notification-plugin-notification-bar .dangernotification p a, | |
| 100 | +.environment-notification-plugin-notification-notification-modal .dangernotification p a{ | |
| 101 | + font-weight: bold; | |
| 102 | + color: #a94442; | |
| 103 | +} | |
| 104 | + | |
| 105 | +.environment-notification-plugin-notification-bar .adminnotification, | |
| 106 | +.environment-notification-plugin-notification-notification-modal .adminnotification{ | |
| 107 | + background: #9a959a; | |
| 108 | + border: 1px solid #9a959a; | |
| 109 | +} | |
| 110 | + | |
| 111 | +.environment-notification-plugin-notification-bar .adminnotification p a, | |
| 112 | +.environment-notification-plugin-notification-notification-modal .adminnotification p a{ | |
| 113 | + font-weight: bold; | |
| 114 | + color: white; | |
| 115 | +} | |
| 116 | + | |
| 117 | +#environment-notification-plugin-notification-manager a.button.icon-deactivate{ | |
| 118 | + background: url(images/hide.png) no-repeat; | |
| 119 | + background-position: center; | |
| 120 | +} | |
| 121 | + | |
| 122 | +#environment-notification-plugin-notification-manager a.button.icon-activate{ | |
| 123 | + background: url(images/show.png) no-repeat; | |
| 124 | + background-position: center; | |
| 125 | +} | |
| 126 | + | |
| 127 | +#environment-notification-plugin-notification-manager .notification-line{ | |
| 128 | + display: inline; | |
| 129 | + padding-top: 10px; | |
| 130 | + vertical-align: middle; | |
| 131 | + border-bottom: 1px solid #ccc; | |
| 132 | +} | |
| 133 | + | |
| 134 | +#environment-notification-plugin-notification-manager .notification-title-bar{ | |
| 135 | + float: left; | |
| 136 | + width: 100%; | |
| 137 | + font-style: 14px; | |
| 138 | + font-weight: 700; | |
| 139 | + border-bottom: 2px solid black; | |
| 140 | + padding: 9px 0; | |
| 141 | +} | |
| 142 | + | |
| 143 | +#environment-notification-plugin-notification-manager .notification-title{ | |
| 144 | + width: 80%; | |
| 145 | + float: left; | |
| 146 | + text-align: center; | |
| 147 | +} | |
| 148 | + | |
| 149 | +.environment-notification-plugin-notification-notification-modal .notification-with-title{ | |
| 150 | + margin-bottom: 0px; | |
| 151 | +} | |
| 152 | + | |
| 153 | +.environment-notification-plugin-notification-notification-modal .notification .notification-title{ | |
| 154 | + width: 100%; | |
| 155 | + float: left; | |
| 156 | + font-weight: bold; | |
| 157 | + text-align: left; | |
| 158 | +} | |
| 159 | + | |
| 160 | +.environment-notification-plugin-notification-notification-modal .notification-with-title-message{ | |
| 161 | + width: 100%; | |
| 162 | + float: left; | |
| 163 | + border-radius: 3px; | |
| 164 | + margin-bottom: 10px; | |
| 165 | + background-color: #f5f5f5; | |
| 166 | + font-size: 14px; | |
| 167 | + overflow: auto; | |
| 168 | +} | |
| 169 | + | |
| 170 | +.environment-notification-plugin-notification-notification-modal .notification-with-title-message p{ | |
| 171 | + padding: 0px 7px; | |
| 172 | +} | |
| 173 | + | |
| 174 | +.environment-notification-plugin-notification-notification-modal .notification-with-title-message p a{ | |
| 175 | + color: black; | |
| 176 | + font-weight: bold; | |
| 177 | +} | |
| 178 | + | |
| 179 | + | |
| 180 | +#environment-notification-plugin-notification-manager .action-title{ | |
| 181 | + width: 20%; | |
| 182 | + float: left; | |
| 183 | + text-align: center; | |
| 184 | +} | |
| 185 | + | |
| 186 | +#environment-notification-plugin-notification-manager .notification-action{ | |
| 187 | + width: 18%; | |
| 188 | + float: left; | |
| 189 | + height: 30px; | |
| 190 | + padding-top: 9px; | |
| 191 | +} | |
| 192 | + | |
| 193 | +#environment-notification-plugin-notification-manager .main-bar .button, | |
| 194 | +#environment-notification-plugin-notification-manager .notification-action .button{ | |
| 195 | + border-radius: 3px; | |
| 196 | +} | |
| 197 | + | |
| 198 | +#environment-notification-plugin-notification-manager .notification-message{ | |
| 199 | + width: 82%; | |
| 200 | + float: left; | |
| 201 | +} | |
| 202 | + | |
| 203 | +#environment-notification-plugin-notification-manager .new-notification{ | |
| 204 | + float: right; | |
| 205 | + width: auto; | |
| 206 | +} | |
| 207 | + | |
| 208 | +#environment-notification-plugin-notification-manager .back-button{ | |
| 209 | + float: left; | |
| 210 | +} | |
| 211 | + | |
| 212 | +#environment-notification-plugin-notification-manager .main-bar{ | |
| 213 | + display: inline; | |
| 214 | + width: 100%; | |
| 215 | +} | |
| 216 | + | |
| 217 | +.environment-notification-plugin-notification-bar .notification .notification-message, | |
| 218 | +.environment-notification-plugin-notification-notification-modal .notification .notification-message{ | |
| 219 | + width: 90%; | |
| 220 | + float: left; | |
| 221 | +} | |
| 222 | + | |
| 223 | +.environment-notification-plugin-notification-bar .notification .notification-close{ | |
| 224 | + background: url(images/redclose.png) no-repeat; | |
| 225 | + background-position: center; | |
| 226 | + width: 20px; | |
| 227 | + height: 20px; | |
| 228 | + float: right; | |
| 229 | + cursor: pointer; | |
| 230 | +} | |
| 231 | + | |
| 232 | +.environment-notification-plugin-notification-bar .notification .notification-hide{ | |
| 233 | + background: url(images/greenhide.png) no-repeat; | |
| 234 | + background-position: center; | |
| 235 | + width: 20px; | |
| 236 | + height: 20px; | |
| 237 | + float: right; | |
| 238 | + cursor: pointer; | |
| 239 | +} | |
| 240 | + | |
| 241 | +.environment-notification-plugin-notification-notification-modal{ | |
| 242 | + display: block; | |
| 243 | + min-width: 400px; | |
| 244 | + max-width: 700px; | |
| 245 | +} | |
| 246 | + | |
| 247 | +.environment-notification-plugin-form .notification-variables-options{ | |
| 248 | + font-style: italic; | |
| 249 | + color: red; | |
| 250 | +} | ... | ... |
plugins/environment_notification/style.css
| ... | ... | @@ -1,250 +0,0 @@ |
| 1 | -.environment-notification-plugin-notification-bar{ | |
| 2 | - display: block; | |
| 3 | -} | |
| 4 | - | |
| 5 | -.environment-notification-plugin-notification-bar .notification:hover, | |
| 6 | -.environment-notification-plugin-notification-notification-modal .notification:hover{ | |
| 7 | - opacity: 0.8; | |
| 8 | -} | |
| 9 | - | |
| 10 | -#environment-notification-plugin-notification-manager{ | |
| 11 | - overflow: auto; | |
| 12 | -} | |
| 13 | - | |
| 14 | -.environment-notification-plugin-notification-bar .notification .notification-close, | |
| 15 | -.environment-notification-plugin-notification-notification-modal .notification .notification-close{ | |
| 16 | - background: url(public/images/close.png) no-repeat; | |
| 17 | - background-position: center; | |
| 18 | - width: 20px; | |
| 19 | - height: 20px; | |
| 20 | -} | |
| 21 | - | |
| 22 | -.environment-notification-plugin-notification-bar .warningnotification, | |
| 23 | -.environment-notification-plugin-notification-bar .informationnotification, | |
| 24 | -.environment-notification-plugin-notification-bar .successnotification, | |
| 25 | -.environment-notification-plugin-notification-bar .dangernotification, | |
| 26 | -.environment-notification-plugin-notification-bar .adminnotification, | |
| 27 | -.environment-notification-plugin-notification-notification-modal .warningnotification, | |
| 28 | -.environment-notification-plugin-notification-notification-modal .informationnotification, | |
| 29 | -.environment-notification-plugin-notification-notification-modal .successnotification, | |
| 30 | -.environment-notification-plugin-notification-notification-modal .dangernotification{ | |
| 31 | - margin-bottom: 10px; | |
| 32 | - padding: 7px 10px; | |
| 33 | - border-radius: 5px; | |
| 34 | - border: 1px solid blue; | |
| 35 | - font-size: 16px; | |
| 36 | - color: white; | |
| 37 | - overflow: auto; | |
| 38 | -} | |
| 39 | - | |
| 40 | -.environment-notification-plugin-notification-bar .warningnotification p, | |
| 41 | -.environment-notification-plugin-notification-bar .informationnotification p, | |
| 42 | -.environment-notification-plugin-notification-bar .successnotification p, | |
| 43 | -.environment-notification-plugin-notification-bar .dangernotification p, | |
| 44 | -.environment-notification-plugin-notification-bar .adminnotification p, | |
| 45 | -.environment-notification-plugin-notification-notification-modal .warningnotification p, | |
| 46 | -.environment-notification-plugin-notification-notification-modal .informationnotification p, | |
| 47 | -.environment-notification-plugin-notification-notification-modal .successnotification p, | |
| 48 | -.environment-notification-plugin-notification-notification-modal .dangernotification p{ | |
| 49 | - margin: 0px; | |
| 50 | -} | |
| 51 | - | |
| 52 | -.environment-notification-plugin-notification-bar .warningnotification, | |
| 53 | -.environment-notification-plugin-notification-notification-modal .warningnotification{ | |
| 54 | - background: #fcf8e3; | |
| 55 | - border: 1px solid #faebcc; | |
| 56 | - color: #8a6d3b; | |
| 57 | -} | |
| 58 | - | |
| 59 | -.environment-notification-plugin-notification-bar .warningnotification p a, | |
| 60 | -.environment-notification-plugin-notification-notification-modal .warningnotification p a{ | |
| 61 | - font-weight: bold; | |
| 62 | - color: #8a6d3b; | |
| 63 | -} | |
| 64 | - | |
| 65 | - | |
| 66 | -.environment-notification-plugin-notification-bar .informationnotification, | |
| 67 | -.environment-notification-plugin-notification-notification-modal .informationnotification{ | |
| 68 | - background: #d9edf7; | |
| 69 | - border: 1px solid #bce8f1; | |
| 70 | - color: #31708f; | |
| 71 | -} | |
| 72 | - | |
| 73 | -.environment-notification-plugin-notification-bar .informationnotification p a, | |
| 74 | -.environment-notification-plugin-notification-notification-modal .informationnotification p a{ | |
| 75 | - font-weight: bold; | |
| 76 | - color: #31708f; | |
| 77 | -} | |
| 78 | - | |
| 79 | -.environment-notification-plugin-notification-bar .successnotification, | |
| 80 | -.environment-notification-plugin-notification-notification-modal .successnotification{ | |
| 81 | - background: #dff0d8; | |
| 82 | - border: 1px solid #d6e9c6; | |
| 83 | - color: #3c763d; | |
| 84 | -} | |
| 85 | - | |
| 86 | -.environment-notification-plugin-notification-bar .successnotification p a | |
| 87 | -.environment-notification-plugin-notification-notification-modal .successnotification p a{ | |
| 88 | - font-weight: bold; | |
| 89 | - color: #3c763d; | |
| 90 | -} | |
| 91 | - | |
| 92 | -.environment-notification-plugin-notification-bar .dangernotification, | |
| 93 | -.environment-notification-plugin-notification-notification-modal .dangernotification{ | |
| 94 | - background: #f2dede; | |
| 95 | - border: 1px solid #ebccd1; | |
| 96 | - color: #a94442; | |
| 97 | -} | |
| 98 | - | |
| 99 | -.environment-notification-plugin-notification-bar .dangernotification p a, | |
| 100 | -.environment-notification-plugin-notification-notification-modal .dangernotification p a{ | |
| 101 | - font-weight: bold; | |
| 102 | - color: #a94442; | |
| 103 | -} | |
| 104 | - | |
| 105 | -.environment-notification-plugin-notification-bar .adminnotification, | |
| 106 | -.environment-notification-plugin-notification-notification-modal .adminnotification{ | |
| 107 | - background: #9a959a; | |
| 108 | - border: 1px solid #9a959a; | |
| 109 | -} | |
| 110 | - | |
| 111 | -.environment-notification-plugin-notification-bar .adminnotification p a, | |
| 112 | -.environment-notification-plugin-notification-notification-modal .adminnotification p a{ | |
| 113 | - font-weight: bold; | |
| 114 | - color: white; | |
| 115 | -} | |
| 116 | - | |
| 117 | -#environment-notification-plugin-notification-manager a.button.icon-deactivate{ | |
| 118 | - background: url(public/images/hide.png) no-repeat; | |
| 119 | - background-position: center; | |
| 120 | -} | |
| 121 | - | |
| 122 | -#environment-notification-plugin-notification-manager a.button.icon-activate{ | |
| 123 | - background: url(public/images/show.png) no-repeat; | |
| 124 | - background-position: center; | |
| 125 | -} | |
| 126 | - | |
| 127 | -#environment-notification-plugin-notification-manager .notification-line{ | |
| 128 | - display: inline; | |
| 129 | - padding-top: 10px; | |
| 130 | - vertical-align: middle; | |
| 131 | - border-bottom: 1px solid #ccc; | |
| 132 | -} | |
| 133 | - | |
| 134 | -#environment-notification-plugin-notification-manager .notification-title-bar{ | |
| 135 | - float: left; | |
| 136 | - width: 100%; | |
| 137 | - font-style: 14px; | |
| 138 | - font-weight: 700; | |
| 139 | - border-bottom: 2px solid black; | |
| 140 | - padding: 9px 0; | |
| 141 | -} | |
| 142 | - | |
| 143 | -#environment-notification-plugin-notification-manager .notification-title{ | |
| 144 | - width: 80%; | |
| 145 | - float: left; | |
| 146 | - text-align: center; | |
| 147 | -} | |
| 148 | - | |
| 149 | -.environment-notification-plugin-notification-notification-modal .notification-with-title{ | |
| 150 | - margin-bottom: 0px; | |
| 151 | -} | |
| 152 | - | |
| 153 | -.environment-notification-plugin-notification-notification-modal .notification .notification-title{ | |
| 154 | - width: 100%; | |
| 155 | - float: left; | |
| 156 | - font-weight: bold; | |
| 157 | - text-align: left; | |
| 158 | -} | |
| 159 | - | |
| 160 | -.environment-notification-plugin-notification-notification-modal .notification-with-title-message{ | |
| 161 | - width: 100%; | |
| 162 | - float: left; | |
| 163 | - border-radius: 3px; | |
| 164 | - margin-bottom: 10px; | |
| 165 | - background-color: #f5f5f5; | |
| 166 | - font-size: 14px; | |
| 167 | - overflow: auto; | |
| 168 | -} | |
| 169 | - | |
| 170 | -.environment-notification-plugin-notification-notification-modal .notification-with-title-message p{ | |
| 171 | - padding: 0px 7px; | |
| 172 | -} | |
| 173 | - | |
| 174 | -.environment-notification-plugin-notification-notification-modal .notification-with-title-message p a{ | |
| 175 | - color: black; | |
| 176 | - font-weight: bold; | |
| 177 | -} | |
| 178 | - | |
| 179 | - | |
| 180 | -#environment-notification-plugin-notification-manager .action-title{ | |
| 181 | - width: 20%; | |
| 182 | - float: left; | |
| 183 | - text-align: center; | |
| 184 | -} | |
| 185 | - | |
| 186 | -#environment-notification-plugin-notification-manager .notification-action{ | |
| 187 | - width: 18%; | |
| 188 | - float: left; | |
| 189 | - height: 30px; | |
| 190 | - padding-top: 9px; | |
| 191 | -} | |
| 192 | - | |
| 193 | -#environment-notification-plugin-notification-manager .main-bar .button, | |
| 194 | -#environment-notification-plugin-notification-manager .notification-action .button{ | |
| 195 | - border-radius: 3px; | |
| 196 | -} | |
| 197 | - | |
| 198 | -#environment-notification-plugin-notification-manager .notification-message{ | |
| 199 | - width: 82%; | |
| 200 | - float: left; | |
| 201 | -} | |
| 202 | - | |
| 203 | -#environment-notification-plugin-notification-manager .new-notification{ | |
| 204 | - float: right; | |
| 205 | - width: auto; | |
| 206 | -} | |
| 207 | - | |
| 208 | -#environment-notification-plugin-notification-manager .back-button{ | |
| 209 | - float: left; | |
| 210 | -} | |
| 211 | - | |
| 212 | -#environment-notification-plugin-notification-manager .main-bar{ | |
| 213 | - display: inline; | |
| 214 | - width: 100%; | |
| 215 | -} | |
| 216 | - | |
| 217 | -.environment-notification-plugin-notification-bar .notification .notification-message, | |
| 218 | -.environment-notification-plugin-notification-notification-modal .notification .notification-message{ | |
| 219 | - width: 90%; | |
| 220 | - float: left; | |
| 221 | -} | |
| 222 | - | |
| 223 | -.environment-notification-plugin-notification-bar .notification .notification-close{ | |
| 224 | - background: url(public/images/redclose.png) no-repeat; | |
| 225 | - background-position: center; | |
| 226 | - width: 20px; | |
| 227 | - height: 20px; | |
| 228 | - float: right; | |
| 229 | - cursor: pointer; | |
| 230 | -} | |
| 231 | - | |
| 232 | -.environment-notification-plugin-notification-bar .notification .notification-hide{ | |
| 233 | - background: url(public/images/greenhide.png) no-repeat; | |
| 234 | - background-position: center; | |
| 235 | - width: 20px; | |
| 236 | - height: 20px; | |
| 237 | - float: right; | |
| 238 | - cursor: pointer; | |
| 239 | -} | |
| 240 | - | |
| 241 | -.environment-notification-plugin-notification-notification-modal{ | |
| 242 | - display: block; | |
| 243 | - min-width: 400px; | |
| 244 | - max-width: 700px; | |
| 245 | -} | |
| 246 | - | |
| 247 | -.environment-notification-plugin-form .notification-variables-options{ | |
| 248 | - font-style: italic; | |
| 249 | - color: red; | |
| 250 | -} | |
| 251 | 0 | \ No newline at end of file |