Advertisement
Guest User

Untitled

a guest
Feb 7th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.99 KB | None | 0 0
  1. .form-scale-table .form-radio {
  2.     visibility : hidden !important;
  3. }
  4. .form-scale-table .form-radio:not(#foo) input[type="radio"] {
  5.     visibility: hidden !important;
  6. }
  7. .form-radio-item:not(#foo) label:after, .form-radio-item:not(#foo) label:before {
  8.   border-radius: 50% !important;
  9. }
  10. .form-checkbox-item:not(#foo) label:after, .form-checkbox-item:not(#foo) label:before {
  11.     border-radius : 0 !important;
  12. }
  13. .form-radio-item:not(#foo) label:before, .form-checkbox-item:not(#foo) label:before  {
  14.   border-width:2px !important;
  15. }
  16. .form-scale-table .form-radio:not(#foo) {
  17.   margin-bottom: 0 !important;
  18.   position: relative !important;
  19. }
  20. /*custom radio*/
  21. .form-scale-table .form-radio:before {
  22.     content: '' !important;
  23.     position: absolute !important;
  24.     -moz-box-sizing: border-box !important;
  25.     -webkit-box-sizing: border-box !important;
  26.     box-sizing: border-box !important;
  27.     -webkit-border-radius: 50% !important;
  28.     -moz-border-radius: 50% !important;
  29.     border-radius: 50% !important;
  30.     border: 2px solid #3498db !important;
  31.     width: 24px !important;
  32.     height: 24px !important;
  33.     cursor: pointer !important;
  34.     visibility: visible !important;
  35.     left:-7px;
  36.     top:-7px;
  37. }
  38. .form-scale-table .form-radio:after {
  39.     content: '' !important;
  40.     position: absolute !important;
  41.     z-index: 10 !important;
  42.     display: inline-block !important;
  43.     opacity: 0 !important;
  44.     width: 10px !important;
  45.     height: 10px !important;
  46.     background-color: #3498db !important;
  47.     -webkit-border-radius: 50% !important;
  48.     -moz-border-radius: 50% !important;
  49.     border-radius: 50% !important;
  50.     cursor: pointer !important;
  51.     visibility: visible !important;
  52. }
  53. .form-scale-table .form-radio:checked:after {
  54.   opacity: 1 !important;
  55.   visibility: visible !important;
  56. }
  57. .form-scale-table label {
  58.     color: #555;
  59.     font-size: 1.5em !important;
  60.     font-weight: normal !important;
  61. }
  62. table.form-scale-table td, table.form-scale-table td {
  63.     padding: 9px;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement