Edit Styles in user profile to fit in languages
parent
62ee94f214
commit
b70dbda2ab
|
@ -1,7 +1,4 @@
|
|||
section.admin-menu
|
||||
header
|
||||
h1(translate="ADMIN.MENU.TITLE")
|
||||
|
||||
nav
|
||||
ul
|
||||
li#adminmenu-project-profile
|
||||
|
|
|
@ -1,18 +1,12 @@
|
|||
section.admin-menu
|
||||
header
|
||||
h1(translate="USER_SETTINGS.MENU.SECTION_TITLE")
|
||||
|
||||
nav
|
||||
ul
|
||||
li#usersettingsmenu-user-profile
|
||||
a(href="", tg-nav="user-settings-user-profile")
|
||||
span.title(translate="USER_SETTINGS.MENU.USER_PROFILE")
|
||||
span.icon.icon-arrow-right
|
||||
li#usersettingsmenu-change-password
|
||||
a(href="" tg-nav="user-settings-user-change-password")
|
||||
span.title(translate="USER_SETTINGS.MENU.CHANGE_PASSWORD")
|
||||
span.icon.icon-arrow-right
|
||||
li#usersettingsmenu-mail-notifications
|
||||
a(href="", tg-nav="user-settings-mail-notifications")
|
||||
span.title(translate="USER_SETTINGS.MENU.EMAIL_NOTIFICATIONS")
|
||||
span.icon.icon-arrow-right
|
||||
|
|
|
@ -4,7 +4,7 @@ div.wrapper(tg-user-notifications, ng-controller="UserNotificationsController as
|
|||
ng-init="section='mail-notifications'")
|
||||
nav.menu.hidden(tg-project-menu)
|
||||
|
||||
sidebar.menu-secondary.sidebar(tg-user-settings-navigation="mail-notifications")
|
||||
sidebar.menu-secondary.sidebar.user-profile-nav(tg-user-settings-navigation="mail-notifications")
|
||||
include ../includes/modules/user-settings-menu
|
||||
|
||||
section.main.admin-common
|
||||
|
|
|
@ -3,7 +3,7 @@ doctype html
|
|||
div.wrapper(tg-user-change-password, ng-controller="UserChangePasswordController as ctrl",
|
||||
ng-init="section='user-settings'")
|
||||
nav.menu.hidden(tg-project-menu)
|
||||
sidebar.menu-secondary.sidebar(tg-user-settings-navigation="change-password")
|
||||
sidebar.menu-secondary.sidebar.user-profile-nav(tg-user-settings-navigation="change-password")
|
||||
include ../includes/modules/user-settings-menu
|
||||
|
||||
section.main.user-change-password
|
||||
|
|
|
@ -3,7 +3,7 @@ doctype html
|
|||
div.wrapper(tg-user-profile, ng-controller="UserSettingsController as ctrl",
|
||||
ng-init="section='user-settings'")
|
||||
nav.menu.hidden(tg-project-menu)
|
||||
sidebar.menu-secondary.sidebar(tg-user-settings-navigation="user-profile")
|
||||
sidebar.menu-secondary.sidebar.user-profile-nav(tg-user-settings-navigation="user-profile")
|
||||
include ../includes/modules/user-settings-menu
|
||||
|
||||
section.main.user-profile
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
li {
|
||||
@extend %larger;
|
||||
@extend %title;
|
||||
border-bottom: 1px solid $gray-light;
|
||||
border-bottom: 1px solid darken($whitish, 10%);
|
||||
text-transform: uppercase;
|
||||
&:last-child {
|
||||
border-bottom: 0;
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
.user-profile-nav {
|
||||
padding: 0;
|
||||
.active {
|
||||
background: $white;
|
||||
color: $fresh-taiga;
|
||||
}
|
||||
}
|
||||
|
||||
.user-profile {
|
||||
form {
|
||||
max-width: 700px;
|
||||
|
|
Loading…
Reference in New Issue