refactor dialog for subdef creation and new user

This commit is contained in:
Mike Ng
2018-06-04 17:27:31 +04:00
parent acefc8ab19
commit 0a85145ad2
15 changed files with 373 additions and 170 deletions

View File

@@ -10,6 +10,7 @@ $mainMenuLinkHoverColor: #000000 !default;
$mainMenuMarginBottom: 0 !default;
$mainMenuBottomBorder: none !default;
#mainMenu {
height: $mainMenuHeight;
line-height: $mainMenuLineHeight;
@@ -19,6 +20,20 @@ $mainMenuBottomBorder: none !default;
margin-bottom: $mainMenuMarginBottom;
z-index: 100;
box-sizing: border-box;
.arrow-up {
display: none;
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 9px solid #d8d8d8;
}
.mobilemenu {
display: none;
}
.desktopmenu {
display: inline-block;
}
.show-menu {
display: none;
i {
@@ -26,6 +41,9 @@ $mainMenuBottomBorder: none !default;
vertical-align: middle;
color: $mainMenuLinkActiveColor;
}
img {
margin-top: 5px;
}
}
ol {
display: block;
@@ -33,9 +51,8 @@ $mainMenuBottomBorder: none !default;
padding: 0;
list-style: none outside none;
}
#custom-link-container {
#nav_notification_container {
display: inline-block;
margin-left: 10px;
}
#mainLogo {
margin:0 10px;
@@ -110,34 +127,92 @@ $mainMenuBottomBorder: none !default;
}
@media screen and (max-width: 760px) {
.mobilemenu {
display: block;
}
#mainMenu {
.show-menu {
display: block;
display: inline-block;
cursor: pointer;
}
#nav_menu {
.desktopmenu {
display: none;
}
#nav_menu_container, #nav_customlink_container, #nav_account_container {
position: absolute;
top: 35px;
width: 172px;
z-index: 1000;
ol {
position: static;
}
li.menu-bar-item {
width: 100%;
clear: both;
background: $mainMenuBackgroundColor;
border-bottom: 1px solid $mainMenuLinkActiveColor;
.nav_menu {
z-index: 1000;
}
li.menu-bar-item a {
position: absolute;
border-radius: 5px;
background-color: #d8d8d8;
width: 100%;
> span {
text-align: center;
font-size: 14px;
font-weight: bold;
&.selected {
border-top: none !important;
.bullet-type {
padding: 0;
}
.bullet-type:before {
content: "";
}
li.menu-bar-item {
left: 10px;
width: 151px;
clear: both;
border-bottom: 1px solid #b7b7b7;
z-index: 1000;
}
li.menu-bar-item a {
width: 100%;
> img {
float: left;
margin-top: 11px;
margin-right: 11px;
display: block;
}
> span {
text-align: left;
font-size: 14px;
font-family: Roboto;
font-weight: 500;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
color: #4a4a4a;
&.selected {
border-top: 3px solid transparent;
}
}
}
li.menu-bar-item:last-child {
border-bottom: none;
}
}
}
#nav_customlink_container {
left: 10px;
.arrow-up {
margin-left: 82px;
display: block;
}
}
#nav_menu_container {
left: 10px;
.arrow-up {
margin-left: 51px;
display: block;
}
}
#nav_account_container {
right: 10px;
.arrow-up {
margin-left: 147px;
display: block;
}
}
#nav_notification_container {
float: right;
margin-right: 50px;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 859 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 680 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 632 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 807 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB