Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
1.9 KiB

  1. @import '~primeflex/src/_variables'
  2. @import '~primeflex/src/_grid'
  3. @import '~primeflex/src/_formlayout'
  4. @import '~primeflex/src/_display'
  5. @import '~primeflex/src/_text'
  6. @import '~primeflex/src/flexbox/_flexbox'
  7. @import '~primeflex/src/_spacing'
  8. @import '~primeflex/src/_elevation'
  9. @import '~primevue/resources/themes/fluent-light/theme.css'
  10. // @import '~primevue/resources/themes/vela-green/theme.css'
  11. //@import '~primevue/resources/themes/mdc-light-indigo/theme.css'
  12. @import '~primevue/resources/primevue.min.css'
  13. @import '~primeicons/primeicons.css'
  14. @import 'layout'
  15. @import "components/index"
  16. body
  17. height: 100%
  18. margin: 0
  19. background: #f8f9fa
  20. #app
  21. font-family: Avenir, Helvetica, Arial, sans-serif
  22. -webkit-font-smoothing: antialiased
  23. -moz-osx-font-smoothing: grayscale
  24. text-align: center
  25. color: #2c3e50
  26. display: flex
  27. flex-direction: column
  28. min-height: 100vh
  29. #nav
  30. padding: 30px
  31. a
  32. font-weight: bold
  33. color: #2c3e50
  34. &.router-link-exact-active
  35. color: #42b983
  36. // Temp location
  37. .box
  38. border: 1px solid black
  39. min-width: 100px
  40. min-height: 100px
  41. padding: 10px
  42. display: flex
  43. justify-content: center
  44. align-items: center
  45. cursor: pointer
  46. margin-left: 1rem
  47. margin-bottom: 1rem
  48. &.selected
  49. border-color: dodgerblue
  50. &.is-plain
  51. cursor: default
  52. &.is-highlighted
  53. border-color: #50b0ff
  54. &.auto
  55. width: auto
  56. min-width: 100px
  57. .searcher.box
  58. align-items: flex-start
  59. .flex-row
  60. display: flex
  61. flex-direction: row
  62. .flex-column
  63. display: flex
  64. flex-direction: column
  65. .flex-center
  66. display: flex
  67. align-items: center
  68. justify-content: center
  69. .searcher-link
  70. &:hover
  71. color: dodgerblue
  72. cursor: pointer
  73. .searchers-row
  74. background: #f3f3f3
  75. padding: 1rem
  76. border-radius: 5px
  77. margin-bottom: 1rem