Browse Source

remove drawing hack as it is no longer needed

sisyphus
Dustin Falgout 9 years ago
parent
commit
259c3f3e9c
  1. 12
      themes/antergos/css/bootstrap/bootstrap.min.css
  2. 7
      themes/antergos/css/bootstrap/prettify.css
  3. 11
      themes/antergos/index.html

12
themes/antergos/css/bootstrap/bootstrap.min.css vendored

File diff suppressed because one or more lines are too long

7
themes/antergos/css/bootstrap/prettify.css vendored

@ -1,7 +0,0 @@
/* Specify class=linenums on a pre to get line numbering */
ol.linenums li {
padding-left: 12px;
color: #bebec5;
line-height: 20px;
text-shadow: 0 1px 0 #fff;
}

11
themes/antergos/index.html

@ -36,11 +36,10 @@
<title>The Antergos Default Greeter Theme</title> <title>The Antergos Default Greeter Theme</title>
<!--For testing changes made to theme in any web browser--> <!--For testing changes made to theme in any web browser-->
<script type="text/javascript" src="js/mock.js"></script> <!--<script type="text/javascript" src="js/mock.js"></script>-->
<!-- Bootstrap Core CSS --> <!-- Bootstrap Core CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap/bootstrap.min.css"/> <link rel="stylesheet" type="text/css" href="css/bootstrap/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap/prettify.css">
<!-- Custom CSS here --> <!-- Custom CSS here -->
<link rel="stylesheet" type="text/css" href="css/bootstrap/theme.css"> <link rel="stylesheet" type="text/css" href="css/bootstrap/theme.css">
@ -106,7 +105,7 @@
if (localStorage.getItem("bgrandom") == null) { if (localStorage.getItem("bgrandom") == null) {
localStorage.setItem("bgrandom", "1"); localStorage.setItem("bgrandom", "1");
} }
$('.dropdown-toggle').dropdown(); $('.dropdown-toggle').dropdown();
}); });
function showAlert() { function showAlert() {
@ -270,7 +269,7 @@
</tr> </tr>
</table> </table>
<div id="timerArea" class="timer"> <div id="timerArea" class="timer">
<i class="fa fa-spinner fa-spin"></i> <i class="fa fa-spinner"></i>
</div> </div>
</div> </div>
<!-- Status Area --> <!-- Status Area -->
@ -292,8 +291,8 @@
</div> </div>
<!-- This is a hack to work-around webkit2gtk glitches with drawing on screen. <!-- This is a hack to work-around webkit2gtk glitches with drawing on screen.
The spinner animation makes GTK constantly repaint the screen which prevents The spinner animation makes GTK constantly repaint the screen which prevents
WSOD (White Screen Of Death) --> WSOD (White Screen Of Death)
<i class="fa fa-spinner fa-spin" style="color: transparent"></i> <i class="fa fa-spinner fa-spin" style="color: transparent"></i>-->
</div> </div>
</div> </div>

Loading…
Cancel
Save