_phrases.scss 594 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // This file is part of the DITA Open Toolkit project.
  2. //
  3. // Copyright 2016 Roger Sheen
  4. //
  5. // See the accompanying LICENSE file for applicable license.
  6. // Sass partial for phrase styles
  7. /* Various basic phrase styles */
  8. .bold {
  9. font-weight: bold;
  10. }
  11. .bolditalic {
  12. font-style: italic;
  13. font-weight: bold;
  14. }
  15. .italic {
  16. font-style: italic;
  17. }
  18. .underlined {
  19. text-decoration: underline;
  20. }
  21. .uicontrol {
  22. font-weight: bold;
  23. }
  24. .defkwd {
  25. font-weight: bold;
  26. text-decoration: underline;
  27. }
  28. .shortcut {
  29. text-decoration: underline;
  30. }
  31. .menucascade > abbr {
  32. text-decoration: none;
  33. }