Merge pull request #3070 from PaulAdamDavis/remove-ember-hacks-css

Remove ember-hacks.css file
This commit is contained in:
John O'Nolan 2014-06-24 15:51:41 +02:00
commit 1a47a64f3f
2 changed files with 0 additions and 72 deletions

View File

@ -1,71 +0,0 @@
/*
Cosmetic changes to ghost styles, that help during development.
The contents should be solved properly or moved into ghost-ui package.
*/
/*
Styles for GhostPopoverComponent
hack the user menu and for the post-save button popup,
until ghost-ui gets a rehaul
*/
.navbar .subnav ul.ghost-popover,
#publish-bar .splitbutton-save .editor-options.ghost-popover,
#publish-bar .splitbutton-delete .editor-options.ghost-popover{
display: none;
}
#publish-bar .splitbutton-save .editor-options.ghost-popover.open,
#publish-bar .splitbutton-delete .editor-options.ghost-popover.open,
.navbar .subnav ul.ghost-popover.open {
display: block;
}
.ghost-popover {
display: none;
}
.ghost-popover.open {
display: block;
}
/* Fade in animation */
.fade-in {
-o-animation: fadein 0.5s; /* Opera */
-moz-animation: fadein 0.5s; /* Firefox */
-webkit-animation: fadein 0.5s; /* Safari and Chrome */
animation: fadein 0.5s;
}
@keyframes fadein {
from {
opacity:0;
}
to {
opacity:1;
}
}
@-o-keyframes fadein { /* Opera */
from {
opacity:0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadein { /* Firefox */
from {
opacity:0;
}
to {
opacity:1;
}
}
@-webkit-keyframes fadein { /* Safari and Chrome */
from {
opacity:0;
}
to {
opacity:1;
}
}

View File

@ -31,7 +31,6 @@
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,700" />
<link rel="stylesheet" href="{{asset "css/ghost-ui.min.css" ember="true"}}" />
<link rel="stylesheet" href="{{asset "css/ember-hacks.css" ember="true"}}" />
</head>
<body class="{{bodyClass}}{{update_notification classOnly="true"}}">