Skip to content

Commit 9c37429

Browse files
committed
Added some blue to pages
Fixed NRPE Config Generator page Fixed loginbox position
1 parent 141b102 commit 9c37429

6 files changed

Lines changed: 32 additions & 14 deletions

File tree

debian/changelog

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
icinga-editor (0.202-5) UNRELEASED; urgency=medium
1+
icinga-editor (0.202-6) UNRELEASED; urgency=medium
22

33
[ dvorak ]
44
* Initial release. (Closes: #XXXXXX)
@@ -88,5 +88,6 @@ icinga-editor (0.202-5) UNRELEASED; urgency=medium
8888
colum value save success.
8989
* All widgets on on command edit form gives you visual response about
9090
colum value save success.
91+
* Fixings
9192

92-
-- vitex <vitex@developer.kancl.brevnov.czf> Mon, 25 Jul 2016 14:25:05 +0200
93+
-- vitex <vitex@developer.kancl.brevnov.czf> Mon, 01 Aug 2016 14:25:44 +0200

debian/conf/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vitexsoftware/icinga-editor",
3-
"description": "Editor of Icinga Configuration files (debian version)",
4-
"version": "0.202.5",
3+
"description": "Editor of Icinga Configuration files (debianized)",
4+
"version": "0.202.6",
55
"authors": [
66
{
77
"name": "vitex",

debian/revison

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5
1+
6

src/classes/NRPEConfigGenerator.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
*
77
* @author vitex
88
*/
9-
class NRPEConfigGenerator extends EaseAtom
9+
class NRPEConfigGenerator extends \Ease\Atom
1010
{
1111
/**
1212
* Objekt hostu
13-
* @var IEHost
13+
* @var Engine\Host
1414
*/
1515
public $host = null;
1616

@@ -41,13 +41,13 @@ class NRPEConfigGenerator extends EaseAtom
4141
/**
4242
* Generátor konfigurace NSC++
4343
*
44-
* @param IEHost $host
44+
* @param Engine\Host $host
4545
*/
4646
public function __construct($host)
4747
{
4848
$this->host = $host;
4949

50-
$preferences = new Engine\IEPreferences;
50+
$preferences = new Preferences();
5151
$this->prefs = $preferences->getPrefs();
5252
$this->cfgInit();
5353
$this->cfgGeneralSet();

src/classes/UI/BootstrapMenu.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __construct($name = null, $content = null,
3434
<li class="divider-vertical"></li>
3535
<li class="dropdown">
3636
<a class="dropdown-toggle" href="login.php" data-toggle="dropdown"><i class="icon-circle-arrow-left"></i> '._('Přihlášení').'<strong class="caret"></strong></a>
37-
<div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px; left: -120px;">
37+
<div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px; left: -150px;">
3838
<form method="post" class="navbar-form navbar-left" action="login.php" accept-charset="UTF-8">
3939
<input class="form-control" style="margin-bottom: 15px;" type="text" placeholder="'._('login').'" id="username" name="login">
4040
<input class="form-control" style="margin-bottom: 15px;" type="password" placeholder="'._('Heslo').'" id="password" name="password">

src/css/default.css

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
*/
77

88
@media (min-width: 1200px) {
9-
.container {
10-
width: auto;
11-
}
9+
.container {
10+
width: auto;
11+
}
1212
}
1313

1414
.navbar {
@@ -124,4 +124,21 @@ a img.avatar { height: 30px; width: 30px;}
124124

125125
}
126126

127-
#smdrag:hover { background-color: #f5ad66; }
127+
#smdrag:hover { background-color: #f5ad66; }
128+
129+
body { background-image: linear-gradient(top, rgba(255,255,255,.5), rgba(255,255,255,0));
130+
background-color: #e9eeef ;
131+
box-shadow: 0 60px 50px -30px rgba(255, 255, 255, .5) inset;
132+
}
133+
134+
.navbar {
135+
background-color: #c1e4ec;
136+
background-image: -webkit-linear-gradient(top, rgba(255,255,255,.5), rgba(255,255,255,0));
137+
background-image: -moz-linear-gradient(top, rgba(255,255,255,.5), rgba(255,255,255,0));
138+
background-image: -ms-linear-gradient(top, rgba(255,255,255,.5), rgba(255,255,255,0));
139+
background-image: -o-linear-gradient(top, rgba(255,255,255,.5), rgba(255,255,255,0));
140+
background-image: linear-gradient(top, rgba(255,255,255,.5), rgba(255,255,255,0));
141+
-moz-box-shadow: 0 60px 50px -30px rgba(255, 255, 255, .5) inset;
142+
-webkit-box-shadow: 0 60px 50px -30px rgba(255, 255, 255, .5) inset;
143+
box-shadow: 0 60px 50px -30px rgba(255, 255, 255, .5) inset;
144+
}

0 commit comments

Comments
 (0)