mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 21:40:39 +03:00
Merge pull request #4053 from PaulAdamDavis/css-bug-fixes
Tiny CSS bug fixes
This commit is contained in:
commit
2f986160fd
@ -142,3 +142,10 @@
|
||||
.modal-style-centered {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// Fixes for specific modals
|
||||
.invite-new-user {
|
||||
.btn-green {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
@ -30,6 +30,7 @@
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
//Function
|
||||
content: '#{$char}';
|
||||
@ -62,6 +63,7 @@
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
// Function
|
||||
content: '#{$char}';
|
||||
@ -187,6 +189,11 @@ $i-code: \e03e;
|
||||
// Icon Classes
|
||||
// --------------------------------------------------
|
||||
|
||||
[class*='icon-'] {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-ghost:before {
|
||||
content: '#{$i-ghost}';
|
||||
}
|
||||
|
@ -75,7 +75,7 @@ a.object-list-item {
|
||||
display: block;
|
||||
border: 1px solid #979797;
|
||||
border-radius: 100%;
|
||||
background-size: cover;
|
||||
background-size: 105%;
|
||||
background-position: center center;
|
||||
} // .object-list-item-figure
|
||||
|
||||
|
@ -325,5 +325,8 @@ textarea {
|
||||
select {
|
||||
padding: 7px 10px 7px 8px;
|
||||
}
|
||||
&:focus {
|
||||
border-color: $brown;
|
||||
}
|
||||
}
|
||||
} // @-moz-document
|
||||
|
@ -16,6 +16,9 @@
|
||||
var GhostSelect = Ember.Component.extend({
|
||||
tagName: 'span',
|
||||
classNames: ['gh-select'],
|
||||
attributeBindings: ['tabindex'],
|
||||
|
||||
tabindex: '0', // 0 must be a string, or else it's interpreted as false
|
||||
|
||||
options: null,
|
||||
initialValue: null,
|
||||
|
@ -26,7 +26,7 @@
|
||||
<div class="form-group for-select">
|
||||
<label for="activeTheme">Author</label>
|
||||
<span class="input-icon icon-user">
|
||||
<span class="gh-select">
|
||||
<span class="gh-select" tabindex="0">
|
||||
{{view Ember.Select
|
||||
name="post-setting-author"
|
||||
content=authors
|
||||
|
@ -71,7 +71,7 @@
|
||||
|
||||
<div class="form-group for-select">
|
||||
<label for="activeTheme">Theme</label>
|
||||
<span class="gh-select" {{bind-attr data-select-text=selectedTheme.label}}>
|
||||
<span class="gh-select" {{bind-attr data-select-text=selectedTheme.label}} tabindex="0">
|
||||
{{view Ember.Select
|
||||
id="activeTheme"
|
||||
name="general[activeTheme]"
|
||||
|
Loading…
Reference in New Issue
Block a user