Skip to content

Commit

Permalink
refactoring / cleaning up / modularizing PHASE #1
Browse files Browse the repository at this point in the history
- update jquery to 2.0.0.
- update jqueryui to 10.0.3
- few bugfix in DiagramDesigner related to jquery update
- refactoring old UI concept into Panels / Dialogs / Widgets (still
needs work)
- introducing layout Manager and a layout based on 'layout.jquery'
plugin
  • Loading branch information
rkereskenyi committed May 10, 2013
1 parent 43f8bb4 commit 9cee2f9
Show file tree
Hide file tree
Showing 123 changed files with 30,422 additions and 27,754 deletions.
68 changes: 0 additions & 68 deletions nodeserver/src/client/css/DynaTreeBrowserWidget.css

This file was deleted.

2 changes: 2 additions & 0 deletions nodeserver/src/client/css/Loader/LoaderCircles.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
position: absolute;
width: 86px;
height: 86px;
line-height: 86px;
text-align: center;
border-radius: 10px;
top: 50%;
left: 50%;
Expand Down
66 changes: 66 additions & 0 deletions nodeserver/src/client/css/PanelBase/PanelBaseWithHeader.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
.panel-base-wh {
box-sizing: border-box; }
.panel-base-wh .panel-header {
padding: 5px;
height: 30px;
background-color: #efefef;
/*overflow: visible;
overflow-x: hidden;*/
white-space: nowrap; }
.panel-base-wh .panel-header .ro-icon {
display: none;
margin-right: 2px; }
.panel-base-wh .panel-header .panel-header-title {
font-size: 20px;
font-weight: bold;
display: inline-block;
margin-right: 10px;
margin-left: 10px; }
.panel-base-wh .panel-header .panel-header-toolbar .toolbar-group {
margin-left: 10px; }
.panel-base-wh .panel-header .panel-header-toolbar select,
.panel-base-wh .panel-header .panel-header-toolbar textarea,
.panel-base-wh .panel-header .panel-header-toolbar input,
.panel-base-wh .panel-header .panel-header-toolbar .uneditable-input {
margin-bottom: 0px; }
.panel-base-wh .panel-header .panel-header-toolbar .input-append,
.panel-base-wh .panel-header .panel-header-toolbar .input-prepend {
margin-bottom: 0px; }
.panel-base-wh .panel-header .panel-header-toolbar li div.iCheckBox {
margin-left: 10px; }
.panel-base-wh .panel-body {
position: relative;
overflow: auto;
background-color: white; }
.panel-base-wh.read-only .panel-header .ro-icon {
display: inline-block; }
.panel-base-wh.read-only .panel-body {
background-color: #fbfbfb; }

.side-panel .panel-base-wh {
position: relative;
padding: 0px;
margin-bottom: 2px;
border: 1px solid #e9e9e9;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background-color: whitesmoke; }
.side-panel .panel-base-wh .panel-header {
padding: 3px;
height: 18px;
background-color: whitesmoke; }
.side-panel .panel-base-wh .panel-header .panel-header-title {
font-size: 11px;
line-height: 18px;
color: #999;
text-transform: uppercase;
margin-right: 0;
margin-left: 0; }
.side-panel .panel-base-wh .panel-header .panel-header-toolbar {
display: block; }
.side-panel .panel-base-wh .panel-body {
background-color: whitesmoke;
padding: 3px; }
.side-panel .panel-base-wh.read-only .panel-body {
background-color: #fbfbfb; }
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
.partBrowser {
text-align: center;
overflow-x: hidden;
overflow-y: hidden;
width: 100%; }
overflow-y: hidden; }
.partBrowser ul {
list-style-type: none;
margin: 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.project-title {
margin-left: 10px;
padding-top: 8px; }
.project-title .title {
font-size: 20px;
font-weight: 200;
line-height: 20px;
color: #ffffff; }
.project-title .readOnlyInfo {
display: none;
margin-left: 5px;
padding-right: 5px;
font-size: 12px;
font-weight: bold; }

.read-only .project-title {
color: #777777; }
.read-only .project-title .readOnlyInfo {
display: inline-block; }

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 0 additions & 31 deletions nodeserver/src/client/css/Project/ProjectTitleView.css

This file was deleted.

75 changes: 0 additions & 75 deletions nodeserver/src/client/css/Repository/RepositoryLogView.css

This file was deleted.

Loading

0 comments on commit 9cee2f9

Please sign in to comment.