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