summaryrefslogblamecommitdiffstats
path: root/webapp/src/assets/styles.css
blob: 59bd978b1f93ee17155da737c69987ae0b0f49f9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
      
                     










                                              
                  


                     

              





                            
                            
                                

 


                            









                                

 


                   
             
 
 














                                             
html {
  overflow-y: scroll;
}

.non-selectable {
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

.non-draggable {
  -webkit-user-drag: none;
  user-drag: none;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar-button {
  display: none;
}

.tabs-wrapper {
  display: flex;
  flex-direction: column
}

.tabs-wrapper > .v-tabs__items {
  padding: 0 5px;
  margin: 0 -5px;
  flex: 1
}

.tabbar-card {
  position: sticky;
  top: 64px;
  z-index: 9;
}

.no-animation {
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;

/*CSS animations*/
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}