瀏覽代碼

[splash] added erpnext-2013 icon

version-14
Rushabh Mehta 12 年之前
父節點
當前提交
8e7b94a1ff
共有 2 個檔案被更改,包括 38 行新增3 行删除
  1. +36
    -2
      public/css/ui/common.css
  2. +2
    -1
      public/html/app.html

+ 36
- 2
public/css/ui/common.css 查看文件

@@ -14,23 +14,57 @@ a {

.content {
background-color: #fff;
-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
}

@-webkit-keyframes pulse {
from {
opacity: 0.7;
}

to {
opacity: 1;
}
}

@keyframes pulse {
from {
opacity: 0.7;
}

to {
opacity: 1;
}
}


.splash {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: #eee;
background-image: none, url("../app/images/erpnext-2013.svg");
background-position: center;
background-repeat: no-repeat;
background-size: 160px;
color: #888;
text-align: center;
padding-top: 250px;
animation-duration: 1s;
animation-name: pulse;
animation-iteration-count: infinite;
animation-direction: alternate;

-webkit-animation-duration: 1s;
-webkit-animation-name: pulse;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;

}


/* listing */

.list-row {


+ 2
- 1
public/html/app.html 查看文件

@@ -9,7 +9,8 @@
<link type="text/css" rel="stylesheet" href="css/all-app.css">
</head>
<body>
<div class="splash">Loading...</div>
<div class="splash">
</div>
<header></header>
<div id="body_div">
</div>


Loading…
取消
儲存