new-task-table.css 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* new-task-table */
  2. .new-task-table {
  3. margin-left: 15px;
  4. margin-right: 15px;
  5. }
  6. @media screen and (orientation: landscape) {
  7. .content > .new-task-table,
  8. .tab-pane > .new-task-table {
  9. margin-right: calc(15px + env(safe-area-inset-right));
  10. }
  11. }
  12. .new-task-table > div.row {
  13. padding-top: 8px;
  14. padding-bottom: 8px;
  15. }
  16. @media screen and (orientation: landscape) {
  17. .content > .new-task-table > div.row,
  18. .tab-pane > .new-task-table > div.row {
  19. margin-right: calc(-1 * calc(15px + env(safe-area-inset-right)));
  20. padding-right: env(safe-area-inset-right);
  21. }
  22. }
  23. .new-task-table > div.row:first-child {
  24. border-top: inherit;
  25. }
  26. .new-task-table .new-task-toollink > a {
  27. margin-right: 20px;
  28. }
  29. @media (max-width: 767px) {
  30. .new-task-table .new-task-toollink > a {
  31. display: block;
  32. }
  33. }
  34. .settings-table .new-task-filter-title {
  35. padding-top: 6px;
  36. }