Commit 220234a4e0df7db2ea88849a654003aa563f7f25

Authored by Marcelo Puebla
Exists in master

Merge branch 'master' into 'develop'

Master(mpuebla)

See merge request !173
src/sass/_botonera-principal.scss
... ... @@ -20,6 +20,7 @@
20 20 position: relative;
21 21 width: 90px;
22 22 outline: 0;
  23 + transition: 0.3s;
23 24 span {
24 25 left: 0;
25 26 position: absolute;
... ... @@ -254,44 +255,41 @@
254 255 }
255 256 }
256 257  
257   - .btn-tareas-pausadas{
258   - background-color: #cd9035;
259   - border-color: #cd9035 !important;
260   - height: 30px;
261   - text-align: center;
262   - width: 280px;
  258 + .btn-tareas-pausadas {
  259 + padding-left: 2rem;
  260 + padding-right: 2rem;
  261 + border-radius: 4px;
  262 + font-size: 14px;
  263 + width: auto;
  264 + height: 35px;
  265 + color: white;
263 266 background-image: none;
264   - flood-color: #ffffff;
265   - &:hover {
266   - background-color: #cd9035;
267   - }
  267 + background-color: #cd9035;
  268 + transition: 0.3s;
  269 + &:hover,
268 270 &:focus {
269 271 background-color: #cd9035;
270 272 }
271 273 }
272 274  
273   - .dropdown-tareas-pausadas{
274   - background: linear-gradient(0 ,#ffffff, #e6e6e6);
275   - position: absolute;
276   - will-change: transform;
277   - top: 0px;
278   - left: 0px;
279   - transform: translate3d(0px, 0px, 0px);
280   - margin-bottom: 5px;
  275 + .dropdown-tareas-pausadas {
281 276 padding: 0px;
282   - box-sizing: content-box;
283   - border-radius: 12px;
284   - font: small;
  277 + border-radius: 4px;
  278 + background: linear-gradient(0, #ffffff, #e6e6e6);
285 279 transform: translate3d(0px, 30px, 0px);
  280 + box-sizing: content-box;
  281 + font-size: 12px;
  282 + transition: 0.3s;
286 283 }
287 284  
288   - .items-dropdown{
289   - background-color:rgba(0, 0, 0, 0);
290   - cursor: hand;
291   - &:hover {
  285 + .items-dropdown {
  286 + cursor: pointer;
  287 + width: auto;
  288 + background-color: rgba(0, 0, 0, 0);
  289 + transition: 0.3s;
  290 + &:hover,
  291 + &:focus {
292 292 background-color: #e6e6e6;
293   - width: 98%;
294   - border-radius: 12px;
295 293 }
296 294 }
297 295