Guest User

Untitled

a guest
Jan 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. @-moz-document domain("github.com") {
  2. /** v1.1
  3. Changelog:
  4. v1.1: Add support for new full width dashboard
  5.  
  6. Licensed under CC0 - Public Domain
  7. **/
  8.  
  9. /* Move left column to right */
  10. .page-dashboard.full-width .application-main div.d-flex.flex-wrap.bg-gray .team-left-column:first-child {
  11. position: absolute;
  12. margin-left: 650px;
  13. }
  14.  
  15. /* Still show alert boxes */
  16. .page-dashboard.full-width .application-main div.d-flex.flex-wrap.bg-gray .team-left-column ~ .team-left-column {
  17. position: absolute;
  18. margin-left: 1000px;
  19. border-bottom: 0px!important;
  20. }
  21.  
  22.  
  23. /* Remove border */
  24. .page-dashboard.full-width .application-main div.d-flex.flex-wrap.bg-gray .team-left-column.border-right:first-child {
  25. border-right: 0px!important;
  26. }
  27.  
  28.  
  29. /* Center header */
  30. .Header > div.px-3 {
  31. margin: auto;
  32. width: 1040px;
  33. }
  34.  
  35. /** Center news **/
  36. .page-dashboard.full-width .application-main .col-12.col-md-8.col-lg-6 {
  37. max-width: 650px!important;
  38. }
  39.  
  40. .page-dashboard.full-width .application-main {
  41. padding-left: 50%;
  42. margin-left: -25%;
  43. }
  44.  
  45. .page-dashboard.full-width .application-main div.d-flex.flex-wrap.bg-gray {
  46. width: 1402px;
  47. }
  48.  
  49. /* White background */
  50. .page-dashboard.full-width .application-main .bg-gray {
  51. background-color: #fff!important;
  52. }
  53.  
  54. /* Remove discovery */
  55. .page-dashboard h4.f5.text-bold,mb-1 {
  56. display: none;
  57. }
  58.  
  59. .page-dashboard div.py-2.my-2 {
  60. display: none;
  61. }
  62.  
  63. .page-dashboard div.py-2.my-2 + a.f6.mb-3 {
  64. display: none!important;
  65. }
  66. }
Add Comment
Please, Sign In to add comment