public
Description: The solution for tabitus of the browser
Homepage: http://overstimulate.com/projects/taboo
Clone URL: git://github.com/anotherjesse/taboo.git
tweaking taboo quickview
anotherjesse (author)
Sat Jul 19 16:54:01 -0700 2008
commit  accd7f715ef983d0fb0acb2f8d99390e91b6afbf
tree    6db41fd3fa70092a65ef4b84ffc1e36939dc8ae0
parent  8b14074ee3414b4c95ced231d1c15a74314284b3
...
48
49
50
51
 
52
53
54
...
56
57
58
59
60
61
62
...
48
49
50
 
51
52
53
54
...
56
57
58
 
59
60
61
0
@@ -48,7 +48,7 @@
0
            onpopuphiding="taboo.hideQuickShow()">
0
       <vbox flex="1">
0
   <hbox id="taboo-search-box">
0
- <label value="Filter:" />
0
+ <label value="Search" />
0
    <textbox id="taboo-quickShow-search" value="" oninput="taboo.quickShowInput(event)" class="plain" flex="1" />
0
   </hbox>
0
   <groupbox id='taboo-groupbox'>
0
@@ -56,7 +56,6 @@
0
    <rows id='tabs-rows' />
0
    </grid>
0
   </groupbox>
0
-
0
       </vbox>
0
     </panel>
0
 
...
11
12
13
14
 
 
 
 
 
 
 
 
 
 
15
16
17
...
21
22
23
 
 
24
25
26
...
11
12
13
 
14
15
16
17
18
19
20
21
22
23
24
25
26
...
30
31
32
33
34
35
36
37
0
@@ -11,7 +11,16 @@
0
         <xul:spacer flex="1" />
0
         <xul:hbox flex="1">
0
           <xul:spacer flex="1" />
0
- <xul:image anonid="img" />
0
+ <xul:stack>
0
+ <xul:image anonid="img" />
0
+ <xul:vbox>
0
+ <xul:hbox>
0
+ <xul:label value="title" anonid="title" crop="end" />
0
+ <xul:spacer flex='1' />
0
+ </xul:hbox>
0
+ <xul:spacer flex="1" />
0
+ </xul:vbox>
0
+ </xul:stack>
0
           <xul:spacer flex="1" />
0
         </xul:hbox>
0
         <xul:spacer flex="1" />
0
@@ -21,6 +30,8 @@
0
       <constructor>
0
         var img = document.getAnonymousElementByAttribute(this, 'anonid', 'img');
0
         img.src = this.getAttribute('src');
0
+ var title = document.getAnonymousElementByAttribute(this, 'anonid', 'title');
0
+ title.value = this.getAttribute('title');
0
       </constructor>
0
     </implementation>
0
   </binding>
...
61
62
63
64
 
65
66
67
68
69
70
71
 
72
73
74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
76
77
...
82
83
84
 
 
 
 
 
 
 
 
 
 
85
86
...
61
62
63
 
64
65
66
67
68
69
70
 
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
...
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
0
@@ -61,17 +61,38 @@ taboo {
0
 }
0
 
0
 taboo {
0
- margin: 5px;
0
+ margin: 4px;
0
 }
0
 
0
 taboo.current {
0
   margin: 0;
0
 }
0
 
0
-taboo.current image {
0
+taboo.current stack {
0
   border: 5px solid #f80;
0
 }
0
 
0
+taboo.current {
0
+ -moz-opacity: 1;
0
+}
0
+
0
+taboo {
0
+ -moz-opacity: 0.5;
0
+}
0
+
0
+taboo stack {
0
+ border: 1px solid #888;
0
+}
0
+
0
+taboo label {
0
+ margin: 0;
0
+ max-width: 125px;
0
+ padding: 2px;
0
+ width: 125px;
0
+ font-weight: bold;
0
+ background-color: rgba(0,0,0,0.5);
0
+}
0
+
0
 #taboo-search-box {
0
   padding: 5px 2px;
0
 }
0
@@ -82,4 +103,14 @@ taboo.current image {
0
 
0
 #taboo-search-box label {
0
   padding-top: 5px;
0
+}
0
+
0
+#taboo-quickShow {
0
+ -moz-appearance: none;
0
+ background-color: rgba(68,68,68,0.9);
0
+ border: 1px solid rgba(255,255,255,0.15);
0
+ -moz-border-radius: 8px;
0
+ padding: 10px 8px 6px 8px;
0
+ margin-top: 4px;
0
+ color: #ffffff;
0
 }
0
\ No newline at end of file

Comments

    No one has commented yet.