...
 
Commits (5)
......@@ -250,7 +250,7 @@
}
.m-v2-topbar__UserMenu {
min-width: 64px;
min-width: 80px;
}
.m-v2-topbar__Container__LoginWrapper {
......
......@@ -87,7 +87,7 @@
</h5>
<span class="m-boost--creator-selector--description m-boost--creator-selector--description--small" i18n="@@M__COMMON__SELECT_MONEY">
Don't have Tokens? No problem.
Don't have tokens? No problem.
</span>
<span class="m-boost--creator-selector--selected-label" i18n="@@M__COMMON__SELECTED">Selected</span>
......@@ -105,7 +105,7 @@
</h5>
<span class="m-boost--creator-selector--description m-boost--creator-selector--description--small" i18n="@@M__COMMON__SELECT_MONEY">
Don't have Tokens?
Don't have tokens?
</span>
<span class="m-boost--creator-selector--selected-label" i18n="@@M__COMMON__SELECTED">Selected</span>
......
......@@ -9,7 +9,7 @@
<span i18n="@@Select hashtag dropdown@@M__FEATURE__HASHTAGS" *ngIf="labelPosition === 'left'">Hashtags</span>
<m-tooltip>
<i m-tooltip--anchor class="fa fa-fw fa-hashtag m-hashtags-selector__Icon"></i>
<ng-container i18n="@@M__FEATURE__WIRE">Click to add tags</ng-container>
<ng-container i18n="@@M__FEATURE__WIRE">Add tags</ng-container>
</m-tooltip>
<span i18n="@@Select hashtag dropdown@@M__FEATURE__HASHTAGS" *ngIf="labelPosition === 'right'">Hashtags</span>
</label>
......
......@@ -37,16 +37,15 @@ m-hashtags-selector, .m-hashtags-selector {
.m-dropdown--list--item {
flex-wrap: wrap;
cursor: pointer;
b {
flex-basis: 100%;
text-transform: uppercase;
letter-spacing: 0.25px;
font-family: 'Roboto';
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-size: 11px;
font-weight: 400;
}
p {
......@@ -68,7 +67,6 @@ m-hashtags-selector, .m-hashtags-selector {
display: flex;
align-items: center;
flex-direction: row;
opacity: 1;
text-overflow: ellipsis;
padding: 4px 0;
......@@ -77,6 +75,10 @@ m-hashtags-selector, .m-hashtags-selector {
@include m-theme(){
border-bottom: 1px solid themed($m-grey-50);
}
&:not(.custom) {
cursor: pointer;
}
.m-form-tags-input-tags--check {
font-size: 18px;
......
......@@ -16,7 +16,7 @@ import { TopbarHashtagsService } from '../service/topbar.service';
<i class="material-icons selected m-form-tags-input-tags--check" [class.selected]="tag.selected">check</i>
</div>
<div class="m-form-tags-input-tags-tag">
<div class="m-form-tags-input-tags-tag custom">
<span>#</span>
<input
type="text"
......
......@@ -13,6 +13,11 @@ minds-newsfeed-poster {
.mdl-card__supporting-text {
overflow: visible;
textarea {
background-color: transparent;
}
}
> div {
......@@ -295,6 +300,9 @@ m-hashtags-selector {
}
.m-posterActionBar__IconAndLabel {
cursor:pointer;
> * {
vertical-align: middle;
}
......
<a (click)="toggle($event)" class="m-notifications--topbar-toggle--icon" [class.m-notifications--topbar-toggle--icon--active]="minds.notifications_count > 0">
<m-tooltip icon="notifications" i18n="@@MINDS__NOTIFICATIONS__TOGGLE">
Notifications
</m-tooltip>
<a (click)="toggle($event)" title="Notifications" class="m-notifications--topbar-toggle--icon" [class.m-notifications--topbar-toggle--icon--active]="minds.notifications_count > 0">
<i class="material-icons">notifications</i>
</a>
<div class="m-notifications--topbar-toggle-overlay" (click)="toggle($event)" *ngIf="toggled"></div>
......
......@@ -177,7 +177,7 @@
</h5>
<span class="m-wire--creator-selector-subtext" i18n="@@M__WIRE_CREATOR__DONT_HAVE_TOKENS">
Don't have Tokens?
Don't have tokens?
</span>
</div>
<span class="m-wire--creator-selector--selected-label" i18n="@@M__COMMON__SELECTED">Selected</span>
......
......@@ -132,7 +132,7 @@
</h5>
<span class="m-wire--creator-selector-subtext" i18n="@@M__WIRE_CREATOR__DONT_HAVE_TOKENS">
Don't have Tokens?
Don't have tokens?
</span>
</div>
<span class="m-wire--creator-selector--selected-label" i18n="@@M__COMMON__SELECTED">Selected</span>
......
......@@ -30,7 +30,6 @@ m-wire-threshold-input, .m-wire-threshold-input {
.m-dropdown--list--item {
flex-wrap: wrap;
cursor: pointer;
b {
flex-basis: 100%;
......@@ -59,12 +58,20 @@ m-wire-threshold-input, .m-wire-threshold-input {
i {
font-size: 18px;
}
i.selected {
cursor: pointer;
}
i.m-wire-threshold-input--type {
cursor: default;
}
input {
padding: 6px;
margin: 0 8px;
min-width: 132px;
min-width: 122px;
}
span {
margin-right: 8px;
......