Advertisement
CodeHz

Atom-blur

Apr 1st, 2018
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.90 KB | None | 0 0
  1. /*
  2.  * Your Stylesheet
  3.  *
  4.  * This stylesheet is loaded when Atom starts up and is reloaded automatically
  5.  * when it is changed and saved.
  6.  *
  7.  * Add your own CSS or Less to fully customize Atom.
  8.  * If you are unfamiliar with Less, you can read more about it here:
  9.  * http://lesscss.org
  10.  */
  11.  
  12.  
  13. /*
  14.  * Examples
  15.  * (To see them, uncomment and save)
  16.  */
  17.  
  18. // style the background color of the tree view
  19. .tree-view {
  20.   // background-color: whitesmoke;
  21. }
  22.  
  23. // style the background and foreground colors on the atom-text-editor-element itself
  24. atom-text-editor {
  25.   // color: white;
  26.   // background-color: hsl(180, 24%, 12%);
  27. }
  28.  
  29. // style UI elements inside atom-text-editor
  30. atom-text-editor .cursor {
  31.   // border-color: red;
  32. }
  33.  
  34. html,
  35. atom-workspace,
  36. atom-workspace-axis,
  37. status-bar,
  38. atom-panel-container,
  39. atom-pane-container,
  40. atom-pane-axis,
  41. atom-pane > *,
  42. atom-dock,
  43. atom-dock > *,
  44. .item-views > *,
  45. .tab-bar > .tab,
  46. .settings-view .config-menu,
  47. .settings-view .config-menu .nav > li:hover > a,
  48. .atom-dock-mask,
  49. .atom-dock-content-wrapper.left .tab-bar .tab.active,
  50. .atom-dock-content-wrapper.left .item-views,
  51. .tree-view .selected:before,
  52. .deprecation-cop {
  53.   background: rgba(255, 255, 255, 0) !important;
  54. }
  55.  
  56. .tree-view:focus .selected:before {
  57.   background: rgba(255, 255, 255, 0.5) !important;
  58.   color: black !important;
  59. }
  60.  
  61. .tree-view:focus *,
  62. .tree-view:focus *::before {
  63.   color: black !important;
  64. }
  65.  
  66. .atom-dock-inner.atom-dock-open.left,
  67. atom-pane,
  68. .config-menu {
  69.   border: none !important;
  70. }
  71. .settings-view .config-menu .nav > li.active > a,
  72. .settings-view > .panels {
  73.   background: rgba(255, 255, 255, 0.3) !important;
  74. }
  75.  
  76. .welcome-card {
  77.   background: rgba(255, 255, 255, 0.2) !important;
  78. }
  79.  
  80. atom-notification {
  81.   background: rgba(240, 240, 240, 0.75) !important;
  82. }
  83.  
  84. atom-pane, atom-panel {
  85.   background: rgba(240, 240, 240, 0.5) !important;
  86. }
  87.  
  88. .tab-bar {
  89.   box-shadow: none;
  90.   -webkit-user-select: none;
  91. }
  92.  
  93. .item-views,
  94. .tab-bar .tab.active {
  95.   background-color: rgba(255, 255, 255, 0.5) !important;
  96. }
  97.  
  98. .tab-bar > .tab {
  99.   border: none !important;
  100.   box-shadow: none !important;
  101.   color: black !important;
  102. }
  103.  
  104. atom-overlay > * {
  105.   background: rgba(255, 255, 255, 0.9) !important;
  106. }
  107.  
  108. ::-webkit-scrollbar-thumb {
  109.   border-color: rgba(255, 255, 255, 0.4) !important;
  110.   border-radius: 0 !important;
  111. }
  112.  
  113. ::-webkit-scrollbar-track {
  114.   background: none !important;
  115. }
  116.  
  117. atom-text-editor.editor {
  118.   .cursor-line {
  119.     background-color: rgba(0, 0, 0, 0.1) !important;
  120.   }
  121.   .selection .region {
  122.     background-color: rgba(0, 0, 0, 0.1) !important;
  123.   }
  124.   .gutter {
  125.     background-color: rgba(255, 255, 255, 0) !important;
  126.   }
  127. }
  128.  
  129. atom-text-editor[mini],
  130. .key-binding,
  131. .input-checkbox,
  132. .form-control,
  133. .btn,
  134. .alert,
  135. .package-card,
  136. .avatar,
  137. atom-panel.modal:before {
  138.   border-radius: 0 !important;
  139. }
  140.  
  141. atom-panel.modal:after {
  142.   background: none;
  143. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement