Skip to content

Commit

Permalink
added Loading message on prefs screen
Browse files Browse the repository at this point in the history
  • Loading branch information
gornostal committed Jan 16, 2018
1 parent 0664644 commit ae0f075
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
22 changes: 21 additions & 1 deletion data/preferences/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,29 @@
<meta charset="utf-8">
<title>Ulauncher Preferences</title>
<link rel="stylesheet" href="static/font-awesome.min.css">
<style>
html {
font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #f2f2f2;
}
.init-loading {
position: absolute;
width: 100px;
height: 50px;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -25px;
font-size: 1.3em;
color: #adadad;
text-shadow: 1px 1px 1px #fff;
}
</style>
</head>
<body>
<div id="app"></div>
<div id="app"><div class="init-loading">Loading...</div></div>
<!-- built files will be auto injected -->
</body>
</html>
6 changes: 0 additions & 6 deletions data/preferences/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,6 @@ html, body {
padding: 0;
overflow: hidden;
}
html {
font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #f2f2f2;
}
body {
color: #3d3d3d;
background: #f2f2f2;
Expand Down

0 comments on commit ae0f075

Please sign in to comment.