summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-01-12 01:50:26 +0100
committerAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-01-12 04:05:49 +0100
commit9fe98586186522605653a2439edc124fe088cc67 (patch)
tree6c37242430e451dc3b7c31206e324e6c9b91e7c4
parent4c4ea608faaf83bae3c087fe8444ce85e4d6e437 (diff)
downloadpadlite-teams-9fe98586186522605653a2439edc124fe088cc67.tar.gz
padlite-teams-9fe98586186522605653a2439edc124fe088cc67.tar.bz2
padlite-teams-9fe98586186522605653a2439edc124fe088cc67.zip
templates: Remove erroneous media queries for css files
The css files should also be used for printing and other media types.
-rw-r--r--templates/layout.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/layout.html b/templates/layout.html
index 0e6642a..5439633 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -3,12 +3,12 @@
<head>
<title>Padlite Teams</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!-- Bootstrap -->
- <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet" media="screen">
- <link href="{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" rel="stylesheet" media="screen">
+ <!-- Bootstrap -->
+ <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
+ <link href="{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" rel="stylesheet">
- <link href="{{ url_for('static', filename='css/custom.css') }}" rel="stylesheet" media="screen">
+ <link href="{{ url_for('static', filename='css/custom.css') }}" rel="stylesheet">
</head>
<body>
<div class="container">