mirror of
https://github.com/openstf/stf
synced 2025-10-04 10:19:30 +02:00
Ensure common modules.
This commit is contained in:
parent
fba8586a70
commit
21975af4af
7 changed files with 47 additions and 6 deletions
|
@ -40,7 +40,8 @@
|
|||
"quick-ng-repeat": "~0.0.1",
|
||||
"angular-vs-repeat": "~1.0.0-rc3",
|
||||
"checklist-model": "~0.1.3",
|
||||
"angular-hotkeys": "chieffancypants/angular-hotkeys#~1.4.0"
|
||||
"angular-hotkeys": "chieffancypants/angular-hotkeys#~1.4.0",
|
||||
"angular-borderlayout": "https://github.com/filearts/angular-borderlayout.git"
|
||||
},
|
||||
"private": true,
|
||||
"resolutions": {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require.ensure([], function (require) {
|
||||
require.ensure(['angular', 'angular-route'], function (require) {
|
||||
|
||||
require('angular')
|
||||
require('angular-route')
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require.ensure([], function (require) {
|
||||
require.ensure(['angular', 'angular-route'], function (require) {
|
||||
require('angular')
|
||||
require('angular-route')
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
require.ensure([], function (require) {
|
||||
require.ensure(['angular', 'angular-route'], function (require) {
|
||||
require('angular')
|
||||
require('angular-route')
|
||||
|
||||
|
|
4
res/web_modules/angular-borderlayoutX/index.js
vendored
Normal file
4
res/web_modules/angular-borderlayoutX/index.js
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
require('angular-borderlayout/src/borderLayout.js')
|
||||
require('angular-borderlayout/src/borderLayout.css')
|
||||
require('./style.css')
|
||||
console.log('fe')
|
36
res/web_modules/angular-borderlayoutX/style.css
Normal file
36
res/web_modules/angular-borderlayoutX/style.css
Normal file
|
@ -0,0 +1,36 @@
|
|||
.fa-pane-handle {
|
||||
background: rgba(153, 153, 153, 0.5);
|
||||
}
|
||||
|
||||
.fa-pane:hover > .fa-pane-handle > .fa-pane-toggle {
|
||||
background: rgba(29, 132, 223, 0.8);
|
||||
}
|
||||
|
||||
.fa-pane-resizing > .fa-pane-handle,
|
||||
.fa-pane-handle:hover {
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.fa-pane-scroller {
|
||||
/*border: 1px solid #999;*/
|
||||
}
|
||||
|
||||
.fa-pane-parent > .fa-pane-scroller {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.fa-pane-constrained.fa-pane-resizing > .fa-pane-overlay {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
/* TODO: CHECK THIS */
|
||||
.pane-top-bar {
|
||||
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
||||
z-index: 500;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
height: 46px;
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
}
|
|
@ -20,9 +20,9 @@ module.exports = {
|
|||
}
|
||||
, resolve: {
|
||||
modulesDirectories: [
|
||||
pathutil.resource('bower_components')
|
||||
, pathutil.resource('app/components')
|
||||
pathutil.resource('app/components')
|
||||
, pathutil.resource('web_modules')
|
||||
, pathutil.resource('bower_components')
|
||||
, './node_modules'
|
||||
]
|
||||
, alias: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue