File tree 3 files changed +18
-0
lines changed
3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 94
94
var $item = $ ( this ) ,
95
95
$link = $item . find ( 'a.projectLink' ) ,
96
96
$nameDiv = $item . find ( '.projectName' ) ,
97
+ $projectId = $item . find ( '.identifier span[name=identifier]' ) ,
97
98
$created = $item . find ( '.date-created span[name=date]' ) ,
98
99
$importedDiv = $item . find ( '.date-imported' ) ,
99
100
$imported = $importedDiv . find ( 'span[name=date]' ) ,
107
108
. attr ( 'href' , data . href )
108
109
. text ( data . name )
109
110
111
+ $projectId . text ( data . id )
110
112
$created . text ( data . created )
111
113
112
114
var imported = data . imported
Original file line number Diff line number Diff line change 123
123
font-size : x-small;
124
124
}
125
125
126
+ .projectSwitcher .projectListItem .identifier {
127
+ color : rgb (102 , 102 , 102 );
128
+ line-height : 10px ;
129
+ }
130
+
131
+ .projectSwitcher .projectListItem .identifier span {
132
+ font-size : x-small;
133
+ }
126
134
127
135
/******************************\
128
136
| Striped Background Animation |
Original file line number Diff line number Diff line change 9
9
Example Project
10
10
</ a >
11
11
12
+ <!-- Project Identifier -->
13
+ < div class ="identifier ">
14
+ < span > ID</ span >
15
+ < span name ="identifier ">
16
+ <!-- auto-generated project ID text -->
17
+ </ span >
18
+ </ div >
19
+
12
20
<!-- Dates -->
13
21
< div class ="date date-created ">
14
22
< span class ="small "> created</ span >
You can’t perform that action at this time.
0 commit comments