poll-editor.less 752 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // Poll Editor
  3. // --------------------------------------------------
  4. .poll-choices-control {
  5. .list-group-item {
  6. padding: 0px;
  7. }
  8. .list-group-item .btn {
  9. background: transparent;
  10. border: transparent;
  11. float: left;
  12. margin: 0px 2px;
  13. margin-bottom: -29px;
  14. padding: 0px;
  15. width: 28px;
  16. height: 28px;
  17. position: relative;
  18. top: 3px;
  19. .material-icon {
  20. width: 28px;
  21. height: 28px;
  22. font-size: 28px;
  23. line-height: 28px;
  24. }
  25. }
  26. input {
  27. &, &:focus, &:active {
  28. background: transparent;
  29. border: none;
  30. .box-shadow(none);
  31. outline: none;
  32. margin-left: 30px;
  33. padding: @padding-base-vertical @padding-base-horizontal;
  34. width: 100%;
  35. }
  36. }
  37. }