Selectable.uss 663 B

123456789101112131415161718192021222324252627282930313233
  1. .selectable > #selection-border
  2. {
  3. position: absolute;
  4. left:0;
  5. right:0;
  6. top:0;
  7. bottom:0;
  8. }
  9. .selectable:hover > #selection-border{
  10. border-color: rgba(68,192,255, 0.5);
  11. border-top-width: 1px;
  12. border-left-width: 1px;
  13. border-right-width: 1px;
  14. border-bottom-width: 1px;
  15. }
  16. .selectable:selected > #selection-border
  17. {
  18. border-color: #44C0FF;
  19. border-left-width: 1px;
  20. border-right-width: 1px;
  21. border-top-width: 1px;
  22. border-bottom-width: 1px;
  23. }
  24. .selectable:selected:hover > #selection-border
  25. {
  26. border-left-width: 2px;
  27. border-right-width: 2px;
  28. border-top-width: 2px;
  29. border-bottom-width: 2px;
  30. }