This repository has been archived by the owner on Apr 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
swiss.css overrides the project's css #32
Comments
So - it looks like it inserts CSS files after |
sc68cal
pushed a commit
to sc68cal/keydown
that referenced
this issue
May 1, 2014
The css file for the project should be the last CSS file inserted into the HTML, so that a user can override certain CSS classes. Fixes infews#32
5818ad9 results in: <head>
<title>ipv6_atl</title>
<meta charset='utf-8'>
<meta content='width=1024, user-scalable=no' name='viewport'>
<!-- deck.js's core css -->
<link href="deck.js/core/deck.core.css" rel="stylesheet" type="text/css"/>
<!-- deck.js extension CSS files -->
<link href="deck.js/extensions/codemirror/deck.codemirror.css" rel="stylesheet" type="text/css"/>
<link href="deck.js/extensions/goto/deck.goto.css" rel="stylesheet" type="text/css"/>
<link href="deck.js/extensions/hash/deck.hash.css" rel="stylesheet" type="text/css"/>
<link href="deck.js/extensions/menu/deck.menu.css" rel="stylesheet" type="text/css"/>
<link href="deck.js/extensions/navigation/deck.navigation.css" rel="stylesheet" type="text/css"/>
<link href="deck.js/extensions/scale/deck.scale.css" rel="stylesheet" type="text/css"/>
<link href="deck.js/extensions/status/deck.status.css" rel="stylesheet" type="text/css"/>
<!-- all css in the css dir: Keydown CSS, your custom CSS, and themes from deck.js -->
<link href="css/keydown.css" rel="stylesheet" type="text/css"/>
<link href="css/default.css" rel="stylesheet" type="text/css"/>
<link href="css/horizontal-default.css" rel="stylesheet" type="text/css"/>
<link href="css/swiss.css" rel="stylesheet" type="text/css"/>
<link href="css/horizontal-slide.css" rel="stylesheet" type="text/css"/>
<link href="css/ipv6_atl.css" rel="stylesheet" type="text/css"/>
<!-- Modernizr (provided for legacy browsers) -->
<script src="deck.js/support/modernizr.custom.js" type="text/javascript"></script>
</head> |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I was hoping to use the CSS file that is created for the project, to modify some parts of the presentation. Unfortunately the
swiss.css
file is the last link inserted into the deck, so it is difficult to make any changes (like background color) without modifyingswiss.css
directly, which I was hoping to avoid.The text was updated successfully, but these errors were encountered: