Updated eHorus client
This commit is contained in:
parent
5c32d0ba95
commit
7592bce0a9
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
|||
.btn.active.focus {
|
||||
outline: none;
|
||||
}
|
||||
#files-table a.file-link span.glyphicon {
|
||||
#files-table a.file-link span.glyphicon,
|
||||
#files-table span.file-link span.glyphicon {
|
||||
vertical-align: middle;
|
||||
font-size: x-large;
|
||||
margin-right: 10px;
|
||||
|
@ -24,3 +25,47 @@ div.term-container div.terminal {
|
|||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.glyphicon-refresh-animate {
|
||||
-animation: spin 1s infinite linear;
|
||||
-webkit-animation: spin2 1s infinite linear;
|
||||
}
|
||||
@-webkit-keyframes spin2 {
|
||||
from {
|
||||
-webkit-transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes spin {
|
||||
from {
|
||||
transform: scale(1) rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: scale(1) rotate(360deg);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes spin {
|
||||
from {
|
||||
transform: scale(1) rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: scale(1) rotate(360deg);
|
||||
}
|
||||
}
|
||||
@-o-keyframes spin {
|
||||
from {
|
||||
transform: scale(1) rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: scale(1) rotate(360deg);
|
||||
}
|
||||
}
|
||||
@keyframes spin {
|
||||
from {
|
||||
transform: scale(1) rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: scale(1) rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -41,6 +41,7 @@ $section = (string) get_parameter_get('section');
|
|||
<title>eHorus client</title>
|
||||
<link rel="stylesheet" href="../../include/ehorus/css/bootstrap.min.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../include/ehorus/css/style.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../include/ehorus/css/xterm.css" type="text/css" />
|
||||
<script type="text/javascript" src="../../include/ehorus/bundle.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in New Issue