@lidorsystems/integralui-web
Version:
IntegralUI Web - Advanced UI Components for Angular
150 lines (147 loc) • 3.6 kB
CSS
.iui-menu
{
background-color: #2455b0;
}
.iui-menu > ul
{
background-color: #2455b0;
}
.iui-menuitem-root, .iui-menuitem-root-vertical
{
background: none;
border: solid thin #2455b0;
color: white;
}
.iui-menuitem-root-hovered, .iui-menuitem-root-selected
{
background-color: transparent ;
border: solid thin transparent ;
color: white;
animation-name: iui-menuitem-root-hovered-animate-enter;
animation-delay: 0s;
animation-direction: normal;
animation-duration: 0.15s;
animation-fill-mode: forwards;
animation-iteration-count: 1;
animation-play-state: running;
animation-timing-function: linear;
}
@keyframes iui-menuitem-root-hovered-animate-enter {
0% { background: transparent; border-color: transparent; }
100% { background: #153268; border-color: #0f244a; }
}
.iui-menuitem-root-hovered a
{
color: black;
}
.iui-menuitem
{
color: black;
}
.iui-menuitem-hovered, .iui-menuitem-selected
{
background-color: transparent ;
border: solid thin transparent ;
color: black;
animation-name: iui-menuitem-hovered-animate-enter;
animation-delay: 0s;
animation-direction: normal;
animation-duration: 0.15s;
animation-fill-mode: forwards;
animation-iteration-count: 1;
animation-play-state: running;
animation-timing-function: linear;
}
@keyframes iui-menuitem-hovered-animate-enter {
0% { background: transparent; border-color: transparent; }
100% { background: #d9edfd; border-color: #d9edfd; }
}
.iui-menuitem-selected a
{
color: black;
}
.iui-menu li > ul
{
background-color: #fefefe;
border: solid thin #1e4691;
}
.iui-menu-expand-box
{
width: 16px;
height: 16px;
}
.iui-menuitem
{
background-color: #fefefe;
border: solid thin #fefefe;
color: black;
}
.iui-menu-marker-expand-down::before
{
border: 4px solid #6791e1;
border-color: #6791e1 transparent transparent transparent;
}
.iui-menu-marker-expand-down-rtl::before
{
border: 4px solid #6791e1;
border-color: #6791e1 transparent transparent transparent;
}
.iui-menu-marker-expand-right::before
{
border: 4px solid #6791e1;
border-color: transparent transparent transparent #6791e1;
}
.iui-menu-marker-expand-left::before
{
border: 4px solid #6791e1;
border-color: transparent #6791e1 transparent transparent;
}
.iui-menu-marker-top::before
{
border: 4px solid #fefefe;
border-color: transparent transparent #1e4691 transparent;
}
.iui-menu-marker-top::after
{
border: 4px solid #fefefe;
border-color: transparent transparent #fefefe transparent;
}
.iui-menu-marker-top-rtl::before
{
border: 4px solid #fefefe;
border-color: transparent transparent #1e4691 transparent;
}
.iui-menu-marker-top-rtl::after
{
border: 4px solid #fefefe;
border-color: transparent transparent #fefefe transparent;
}
.iui-menu-marker-left::before
{
border: 4px solid #fefefe;
border-color: transparent #1e4691 transparent transparent;
}
.iui-menu-marker-left::after
{
border: 4px solid #fefefe;
border-color: transparent #fefefe transparent transparent;
}
.iui-menu-marker-right::before
{
border: 4px solid #fefefe;
border-color: transparent transparent transparent #1e4691;
}
.iui-menu-marker-right::after
{
border: 4px solid #fefefe;
border-color: transparent transparent transparent #fefefe;
}
.iui-menu-disabled > ul
{
background: #808080;
}
.iui-menuitem-root-disabled, .iui-menuitem-disabled
{
border: solid thin transparent;
color: #cecece;
}