Search
 
SCRIPT & CODE EXAMPLE
 

CSS

webkit-scrollbar-button css

/* Scrollbar style for Chrome */

/* Track */
::-webkit-scrollbar
{
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track
{
  background: #303030;
  border: solid 2px rgba(33,33,33,0.5);
}


/* Thumb */
::-webkit-scrollbar-thumb
{
  background: #404040;
}

::-webkit-scrollbar-thumb:hover
{
  background: #505050;
}

::-webkit-scrollbar-thumb:active
{
  background: #404040;
}

::-webkit-scrollbar-thumb:vertical
{
  border-top: solid 2px rgba(33,33,33,0.5);
  border-bottom: solid 2px rgba(33,33,33,0.5);
}

::-webkit-scrollbar-thumb:horizontal
{
  border-right: solid 2px rgba(33,33,33,0.5);
  border-left: solid 2px rgba(33,33,33,0.5);
}


/* Buttons */
::-webkit-scrollbar-button
{
  border-style: solid;
  height: 16px;
  width: 16px;
}


/* Up */
::-webkit-scrollbar-button:vertical:decrement
{
  border-width: 0 7px 14px 7px;
  border-color: transparent transparent #404040 transparent;
}

::-webkit-scrollbar-button:vertical:decrement:hover
{
  border-color: transparent transparent #505050 transparent;
}


/* Down */
::-webkit-scrollbar-button:vertical:increment
{
  border-width: 14px 7px 0 7px;
  border-color: #404040 transparent transparent transparent;
}

::-webkit-scrollbar-button:vertical:increment:hover
{
  border-color: #505050 transparent transparent transparent;
}


/* Left */
::-webkit-scrollbar-button:horizontal:decrement
{
  border-width: 7px 14px 7px 0;
  border-color: transparent #404040 transparent transparent;
}

::-webkit-scrollbar-button:horizontal:decrement:hover
{
  border-color: transparent #505050 transparent transparent;
}


/* Right */
::-webkit-scrollbar-button:horizontal:increment
{
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent #404040;
}

::-webkit-scrollbar-button:horizontal:increment:hover
{
  border-color: transparent transparent transparent #505050;
}
Comment

PREVIOUS NEXT
Code Example
Css :: https request 
Css :: python css 
Css :: andy bells css reset 
Css :: devextreme css 
Css :: resctrict css to apply on div 
Css :: why is my css not working 
Css :: Text Shadow Hover Effect 
Css :: how to make focus outline round in html 
Css :: screen sizes for css media 
Css :: count how many characters in the same position are eqial in both strings 
Css :: css is selector 
Css :: display flex 
Css :: hide scrollbar 
Css :: css clamp vs media queries 
Css :: css animation not working 
Css :: chrome extension css 
Css :: css table grid 
Css :: css variables not working 
Css :: css structure 
Css :: css hover change other element 
Css :: how to apply a transition to a child element when hovering over parent element 
Css :: css grid generator 
Css :: quitar flecha summary html css 
Css :: html css text color invert on image 
Css :: html externe css einbinden 
Css :: adding custom icons 
Css :: box-shadow um ganzen div 
Css :: Creating Intrinsic Ratios 
Css :: meaning of bbc 
Css :: ignore certificare ssl 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =