Skip to content

Commit

Permalink
re-specifying title style code
Browse files Browse the repository at this point in the history
  • Loading branch information
soney committed Feb 25, 2016
1 parent e52fde2 commit 17c90e1
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
1 change: 0 additions & 1 deletion lib/recordings/data.json

This file was deleted.

2 changes: 1 addition & 1 deletion lib/response/views/main.view.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<div id="theList" ng-controller='MainController' class="panel wrapper">
<div id="theList" ng-controller='MainController' class="codemand_panel wrapper">

<div class="title" ng-click="titleClick(title)">
<i class="ion-android-arrow-back back-arrow" ng-hide="location === 'responseList'"></i>
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"angular-animate": "~1.5",
"angular-route": "~1.4",
"underscore": "~1.8",
"angular-chart.js": "https://github.com/umso/angular-chart.js.git",
"underscore": "~1.8",
"highlight.js": "~9.1",
"angular-highlightjs": "~0.5",
Expand Down
68 changes: 35 additions & 33 deletions styles/responses.less
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ atom-text-editor /deep/ .line.delete{
// atom-text-editor::shadow .lines .line.cursor-line {
// background-color: red;
// }
//
//
// atom-text-editor::shadow .selection .region {
// background-color: LightGoldenRodYellow;
// }
Expand Down Expand Up @@ -151,8 +151,8 @@ atom-text-editor::shadow .highlight.test-pkg-highlight .region {



.panel {
/*display: inline-block;*/
.codemand_panel {
//display: inline-block;
overflow: auto;
min-width: 325px;
// Set this to set global width:
Expand All @@ -166,47 +166,48 @@ atom-text-editor::shadow .highlight.test-pkg-highlight .region {
margin-top: 0;
margin-bottom: 0;
}
}

.title {
position: relative;
z-index: 30;
box-sizing: border-box;
overflow: hidden;

.title {
position: relative;
z-index: 30;
box-sizing: border-box;
overflow: hidden;
height: 48px;
line-height: 48px;
padding-left: 10px;

height: 48px;
line-height: 48px;
padding-left: 10px;
font-family: sans-serif;
font-size: 16px;
white-space: nowrap;

font-family: sans-serif;
font-size: 16px;
white-space: nowrap;
color: @color-widget-text;
background-color: @color-widget-background;
box-shadow: @shadow-medium;
cursor: default;

color: @color-widget-text;
background-color: @color-widget-background;
box-shadow: @shadow-medium;
cursor: default;
.back-arrow {
font-size: 28px;
margin-right: 5px;
opacity: 1;
cursor: pointer;

.back-arrow {
font-size: 28px;
margin-right: 5px;
opacity: 1;
cursor: pointer;
transition: all @transition-duration;

transition: all @transition-duration;
&.ng-hide {
opacity: 0;
margin-right: -23px;
}
}

.title-text {
vertical-align: top;
}

&.ng-hide {
opacity: 0;
margin-right: -23px;
}
}
}

.title-text {
vertical-align: top;
}

}


.content-wrapper {
Expand Down Expand Up @@ -336,3 +337,4 @@ atom-text-editor::shadow .highlight.test-pkg-highlight .region {
}
}
}

0 comments on commit 17c90e1

Please sign in to comment.