diff --git a/app/app/templates/security/editor-sidebar-user.html b/app/app/templates/security/editor-sidebar-user.html index 167942ba..5b9f21a7 100644 --- a/app/app/templates/security/editor-sidebar-user.html +++ b/app/app/templates/security/editor-sidebar-user.html @@ -24,7 +24,7 @@

Projects

- New Project... + Create Project
@@ -44,13 +44,16 @@

Phone

Email

{{Person.Email}}

+ + +
+

Websites

+
+
-

Websites

- - Add Website - +
diff --git a/app/assets/css/styles.css b/app/assets/css/styles.css index 34721fdd..0bb3d02e 100644 --- a/app/assets/css/styles.css +++ b/app/assets/css/styles.css @@ -2427,6 +2427,12 @@ body.editor-sidebar-open #layout.editor.open-split-markdown { color: #d9df20; background: #1e1e1e; } +.editor-sidebar .btn[data-editor-type][editor-handled-by][data-editor-name="Website"] { + background: transparent; + font-size: 1em; + display: inline-block; + width: auto; +} .editor-sidebar .image-list { list-style: none; clear: both; @@ -2781,6 +2787,18 @@ body.editor-sidebar-open #layout.editor.open-split-markdown { .editor-sidebar *[data-editor-type][editor-handled-by].active:-moz-placeholder { color: #262626; } +.editor-sidebar input[type="text"].active:before, +.editor-sidebar input[type="email"].active:before, +.editor-sidebar input[type="tel"].active:before, +.editor-sidebar input[type="password"].active:before, +.editor-sidebar *[data-editor-type][editor-handled-by].active:before, +.editor-sidebar input[type="text"].active:after, +.editor-sidebar input[type="email"].active:after, +.editor-sidebar input[type="tel"].active:after, +.editor-sidebar input[type="password"].active:after, +.editor-sidebar *[data-editor-type][editor-handled-by].active:after { + color: #fff !important; +} .editor-sidebar input[type="password"] { margin-top: 0.75em; } diff --git a/dummies/less/styles.less b/dummies/less/styles.less index 5e52f295..a0ebc36b 100644 --- a/dummies/less/styles.less +++ b/dummies/less/styles.less @@ -1320,6 +1320,13 @@ body.editor-sidebar-open { } } + .btn[data-editor-type][editor-handled-by][data-editor-name="Website"] { + background: transparent; + font-size: @font-size / @em; + display: inline-block; + width: auto; + } + .image-list { @gap: 10px; @@ -1550,6 +1557,13 @@ body.editor-sidebar-open { input[type="password"], *[data-editor-type][editor-handled-by] { .editable-dark-styles; + + &.active { + &:before, + &:after { + color: #fff !important; + } + } } input[type="password"] {