mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-11 11:38:41 +01:00
Moved files to their right places
This commit is contained in:
parent
3396a6e4f1
commit
aa59829ca3
6 changed files with 4 additions and 96 deletions
|
|
@ -142,13 +142,12 @@ module.exports = function(grunt){
|
|||
"htdocs/lib/css/awesome-bootstrap-checkbox.css",
|
||||
"htdocs/css/nga.min.css",
|
||||
"htdocs/css/app.css",
|
||||
"htdocs/css/radio.css",
|
||||
"htdocs/css/checkbox.css",
|
||||
"htdocs/css/menu.css",
|
||||
"htdocs/themes/vodafone/css/theme.css",
|
||||
"htdocs/themes/vodafone/css/bootstrap.min.css"
|
||||
];
|
||||
|
||||
cssfiles = cssfiles.concat(grunt.file.expand(["htdocs/plugins/**/css/*.css"]));
|
||||
|
||||
var pluginfiles = grunt.file.expand(["htdocs/plugins/**/plugin.json"]);
|
||||
var otherfiles = grunt.file.expand(["./htdocs/plugins/**/*.js", "./htdocs/themes/vodafone/**/*.js"]).filter(function(x){
|
||||
return !x.match(/.*\/test-.*\.js/) && !x.match(/.*\.test\.js/);
|
||||
|
|
|
|||
|
|
@ -1,14 +0,0 @@
|
|||
.checkbox-info input[type="checkbox"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
.checkbox-info input[type="checkbox"]:checked + label::before {
|
||||
background-color: #64bd63;
|
||||
border-color: #808080;
|
||||
}
|
||||
.checkbox-info input[type="checkbox"]:checked + label::after {
|
||||
color: #fff;
|
||||
}
|
||||
.checkbox-small {
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
ul.left-menu {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0 20px 0 -10px;
|
||||
}
|
||||
|
||||
ul.left-menu li {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: none repeat scroll 0 0 transparent;
|
||||
border: 0 none;
|
||||
font-family: Arial,sans-serif;
|
||||
font-size: 16px;
|
||||
outline: 0 none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
ul.left-menu a {
|
||||
margin: 0;
|
||||
display: block;
|
||||
border-bottom: 1px solid #ccc;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
padding-left: 20px;
|
||||
text-decoration: none;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
ul.left-menu a.collapsed {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
ul.left-menu a:hover,
|
||||
ul.left-menu a:visited,
|
||||
ul.left-menu a:active{
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
ul.left-menu li a.open {
|
||||
color: #e60000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.left-sub-menu {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: -10px 0 10px 20px;
|
||||
}
|
||||
|
||||
ul.left-sub-menu li {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: none repeat scroll 0 0 transparent;
|
||||
border: 0 none;
|
||||
font-family: Arial,sans-serif;
|
||||
font-size: 16px;
|
||||
outline: 0 none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
.radio-info input[type="radio"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.radio-info input[type="radio"] + label::after {
|
||||
background-color: #64bd63;
|
||||
}
|
||||
.radio-info input[type="radio"]:checked + label::before {
|
||||
border-color: #808080;
|
||||
}
|
||||
.radio-info input[type="radio"]:checked + label::after {
|
||||
background-color: #64bd63;
|
||||
}
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
//! Author: Martin K. Schröder <mkschreder.uk@gmail.com>
|
||||
|
||||
$juci.module("phone")
|
||||
JUCI.app
|
||||
.controller("PhoneCallLogPageCtrl", function($scope, $uci, gettext, $tr, $rpc){
|
||||
$scope.phoneFilter = "";
|
||||
$scope.phoneFilterSelected = {};
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ var request = require("request");
|
|||
var bodyParser = require('body-parser')
|
||||
|
||||
var config = {
|
||||
ubus_uri: "http://192.168.1.4/ubus" // <-- your router uri
|
||||
ubus_uri: "http://192.168.1.1/ubus" // <-- your router uri
|
||||
};
|
||||
|
||||
app.use( bodyParser.json() ); // to support JSON-encoded bodies
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue