Skip to content

Commit

Permalink
Merge pull request #315 from SpiderOak/management_console_3.4.0
Browse files Browse the repository at this point in the history
Management console 3.4.0
  • Loading branch information
bdzim authored Aug 19, 2020
2 parents c2b8d33 + 21d673a commit a5ab6ed
Show file tree
Hide file tree
Showing 27 changed files with 959 additions and 175 deletions.

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions django/apps/blue_management/blue_mgnt/static/less/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -1364,6 +1364,7 @@ span.error-highlight {
vertical-align: middle;
margin-left: 10px;
text-shadow: 0 0 1px #000;
white-space: normal;
}

}
Expand Down Expand Up @@ -1474,6 +1475,18 @@ tr > td {
}
}

.user_detail{
.pass-wrapper {
width: 220px;
}
}

.password{
.pass-wrapper {
width: 300px;
}
}

td.first-time-user {
&:hover {
background-color: #fff!important;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
engines:
eslint:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
fixme:
enabled: true
ratings:
paths:
- src/**
exclude_paths:
- dist/**/*
- test/**/*
- src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

[*.html]
indent_size = 4
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/node_modules
/dist
*.log
/bower_components
/coverage

yarn.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
language: node_js
node_js:
- '6'

git:
depth: 1

branches:
except:
- gh-pages

env:
global:
secure: bye5+hTpxM3+hC1CMrFWJKhaNgle+D1EYy+WyNFEh+GWD3UpHhrkIAzxk66CZaSaBf2FOf/3Asw8E7ZBokSJ1mQGcyvSHpy4DTniNcI69BW0QI5SoGTXHKhpbfNfZUaUwUchIYZdc7VR0MN7P+Vs1nW5xZE2VgyAsY641yVRy/uvpqQeKIqcZqY5CGgwt2AceBjgxR3arJdcgA0ASW/0uIp+NaE5Mfj/Uf2KCItGAEcg1UV8Wcq45yB8sNyhYnMO51h5aMozFMIJmgheeISbEZSFa/kGb1rGK+jvjwsRLKzGb6bMeYTcYACVGdI78pI3KaWkmDS0+WeQw2hOU76ugsJHYEl/CmVkQ2TKpmjQaK7SsRi6nS95G82mI08ZJcx+X1q8hSQ7rXtPoM9f+juk3Zv8xdOKxYR1M5p7REu053Nhp+RwfTFljWTdFAYBxaKAtAmt4VYE+MnOz8PDvrlc+o24kJJSMahPonpI4EKRW/Pm/XJwzEKnC8Voy4a6623RdO7gzG5ZRf5DNDLCAaqiziseLZRKHRx1dFDefnNuNgOUGIeRfbWY9Dwbde5G2KG15ZYcIMfqrJpaSWfqBcgag/2iU/WLahF/7pbeHdYHI1fVMz01GXyf+yn4Hcpt4r5A+jHzB0Td9BLkb2TqTvTaUqQk2gHrbsS1P0XORjIacJQ=

addons:
sauce_connect: true

cache:
yarn: true

install:
- npm install -g yarn

before_script:
- yarn install
- yarn add codecov -g

script:
- yarn test

after_success:
- cat coverage/*/lcov.info > coverage/lcov.info
- codecov
- if [ $TRAVIS_BRANCH = 'master' ]; then sh build.sh; fi
Loading

0 comments on commit a5ab6ed

Please sign in to comment.