diff --git a/UI/Templates/ContactsUI/UIxContactFolderProperties.wox b/UI/Templates/ContactsUI/UIxContactFolderProperties.wox index da69c3f8c..f341e9ced 100644 --- a/UI/Templates/ContactsUI/UIxContactFolderProperties.wox +++ b/UI/Templates/ContactsUI/UIxContactFolderProperties.wox @@ -8,7 +8,7 @@ > - +
diff --git a/UI/Templates/MailerUI/UIxMailEditor.wox b/UI/Templates/MailerUI/UIxMailEditor.wox index 078d42ac7..309444a88 100644 --- a/UI/Templates/MailerUI/UIxMailEditor.wox +++ b/UI/Templates/MailerUI/UIxMailEditor.wox @@ -15,7 +15,7 @@ uploader="editor.uploader" var:sg-labels="framework">
- +
- +
account_box diff --git a/UI/Templates/PreferencesUI/UIxFilterEditor.wox b/UI/Templates/PreferencesUI/UIxFilterEditor.wox index f65d380bf..dc02b9d1b 100644 --- a/UI/Templates/PreferencesUI/UIxFilterEditor.wox +++ b/UI/Templates/PreferencesUI/UIxFilterEditor.wox @@ -9,7 +9,7 @@ xmlns:uix="OGo:uix"> - +
filter_list diff --git a/UI/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox b/UI/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox index f4d4e019a..ee40d1908 100644 --- a/UI/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox +++ b/UI/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox @@ -6,7 +6,7 @@ xmlns:label="OGo:label"> - +
event diff --git a/UI/Templates/SchedulerUI/UIxCalendarProperties.wox b/UI/Templates/SchedulerUI/UIxCalendarProperties.wox index 682b2c701..1cdba71dd 100644 --- a/UI/Templates/SchedulerUI/UIxCalendarProperties.wox +++ b/UI/Templates/SchedulerUI/UIxCalendarProperties.wox @@ -9,7 +9,7 @@ - +
@@ -90,7 +90,7 @@ - diff --git a/UI/Templates/SchedulerUI/UIxTaskEditorTemplate.wox b/UI/Templates/SchedulerUI/UIxTaskEditorTemplate.wox index b8ae35b01..f614702e0 100644 --- a/UI/Templates/SchedulerUI/UIxTaskEditorTemplate.wox +++ b/UI/Templates/SchedulerUI/UIxTaskEditorTemplate.wox @@ -6,7 +6,7 @@ xmlns:label="OGo:label"> - +
assignment_turned_in diff --git a/UI/WebServerResources/scss/components/icon/icon.scss b/UI/WebServerResources/scss/components/icon/icon.scss index abc8b1b05..f236ce61c 100644 --- a/UI/WebServerResources/scss/components/icon/icon.scss +++ b/UI/WebServerResources/scss/components/icon/icon.scss @@ -44,6 +44,10 @@ $icon-badge-size: 2 * $baseline-grid; font-feature-settings: 'liga'; } +md-icon[ng-click]:hover { + cursor: pointer; +} + // Define CSS styles to use ng-class with md-icon md-icon { transition: transform 240ms; @@ -54,6 +58,7 @@ md-icon { position: absolute; right: $mg * 3; transform: rotate(-15deg); + color: white; } &.sg-icon--large { font-size: $sg-md-grid-pitch; diff --git a/UI/WebServerResources/scss/components/toolbar/toolbar.scss b/UI/WebServerResources/scss/components/toolbar/toolbar.scss index c1b583d4f..2fbe5d4da 100644 --- a/UI/WebServerResources/scss/components/toolbar/toolbar.scss +++ b/UI/WebServerResources/scss/components/toolbar/toolbar.scss @@ -20,20 +20,7 @@ md-toolbar { transition-duration: 0s; } -// Colors transition when changing folder color in dialogs -md-dialog { - md-toolbar, - md-toolbar .md-input, - md-toolbar md-input-container.md-input-has-value label, - md-toolbar md-input-container.md-input-has-value label:not(.md-no-float), - md-toolbar md-icon { - transition: background-color $swift-ease-out-duration $swift-ease-out-timing-function, - color $swift-ease-out-duration $swift-ease-out-timing-function; - } -} - .md-toolbar-tools { - //padding: 0; // dirty fix to override angular-material botchy typography font-size: 1em !important; } @@ -64,6 +51,31 @@ md-toolbar, } } +// Colors transition when changing folder color in dialogs +md-dialog { + md-toolbar, + md-toolbar .md-input, + md-toolbar md-input-container.md-input-has-value label, + md-toolbar md-input-container.md-input-has-value label:not(.md-no-float), + md-toolbar md-icon { + transition: background-color $swift-ease-out-duration $swift-ease-out-timing-function, + color $swift-ease-out-duration $swift-ease-out-timing-function; + } +} + +// Light colors for md-input inside md-toolbar +md-toolbar md-input-container:not(.md-input-invalid) { + &.md-input-focused label, + .md-input { + color: rgba(255,255,255,0.87); // {{primary-contrast}} + } + &.md-input-focused .md-input { + padding-bottom: $input-border-width-focused - $input-border-width-default; + border-bottom-width: $input-border-width-default; + border-color: rgba(255,255,255,0.87); // {{primary-contrast}} + } +} + header { flex-direction: row; flex-wrap: nowrap;