accessible.css 771 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .blocklyToolboxColumn {
  2. float: left;
  3. width: 350px;
  4. }
  5. .blocklyWorkspaceColumn {
  6. float: left;
  7. width: 350px;
  8. }
  9. .blocklyToolbarColumn {
  10. float: left;
  11. margin-left: 10px;
  12. margin-top: 20px;
  13. width: 150px;
  14. }
  15. .blocklyAriaLiveStatus {
  16. background: #c8f7be;
  17. border-radius: 10px;
  18. bottom: 80px;
  19. left: 20px;
  20. max-width: 275px;
  21. padding: 10px;
  22. position: fixed;
  23. }
  24. .blocklyTree .blocklyActiveDescendant > label,
  25. .blocklyTree .blocklyActiveDescendant > div > label,
  26. .blocklyActiveDescendant > button,
  27. .blocklyActiveDescendant > input,
  28. .blocklyActiveDescendant > blockly-field-segment > label,
  29. .blocklyActiveDescendant > blockly-field-segment > input {
  30. outline: 2px dotted #00f;
  31. }
  32. .blocklyDropdownListItem[aria-selected="true"] button {
  33. font-weight: bold;
  34. }