Advertisement
thebys

SCSS - tlačítka...

Jul 15th, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1. /*tlacitka editace komentare ulozit a zrusit*/
  2.   #edit-actions {
  3.     input {
  4.       height: 60px;
  5.       background-color: transparent;
  6.       background-repeat: no-repeat;
  7.       background-position: left;
  8.  
  9.       /*pouzitelnost - zabrani neumyslnemu klikani na spatne tlacitko*/
  10.       margin-right: 20px;
  11.  
  12.       /*balanc a destylizace input button stylu*/
  13.       padding-left: 50px;
  14.       border: none;
  15.  
  16.       /*linkizace textu*/
  17.       color: $linkColor;
  18.       font-size: 1.1em;
  19.  
  20.       /*zmeni kurzor na pointer*/
  21.       cursor: pointer;
  22.     }
  23.     input:hover {
  24.       color: $linkColorHover;
  25.     }
  26.     /*tlacitko upravit / ulozit / vlozit*/
  27.     input[id^="edit-ajax-comments"] {
  28.       background-image: url("../img/commentIcons/ok_h60.png");
  29.     }
  30.     /*tlacitko smazat / zrusit*/
  31.     input[id^="cancel-ajax-comments"] {
  32.       background-image: url("../img/commentIcons/cancel_h60.png");
  33.     }
  34.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement