Changeset 8703 for lliurex-store/trunk/fuentes/lliurex-store-gui/usr
- Timestamp:
- Jun 26, 2019, 12:34:25 AM (20 months ago)
- Location:
- lliurex-store/trunk/fuentes/lliurex-store-gui/usr/share/lliurex-store/lliurex-store-gui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/lliurex-store-gui/usr/share/lliurex-store/lliurex-store-gui/DetailsBox.py
r8187 r8703 605 605 if os.path.exists(os.getenv("HOME")+"/.local/bin/%s"%appimg): 606 606 Popen([os.getenv("HOME")+"/.local/bin/%s"%appimg]) 607 # os.system(os.getenv("HOME")+"/.local/bin/%s"%appimg) 607 elif os.path.exists(os.getenv("HOME")+"/AppImages/%s"%appimg): 608 Popen([os.getenv("HOME")+"/AppImages/%s"%appimg]) 608 609 elif 'Zomando' in self.core.main_window.current_pkg["categories"]: 609 610 zmd=self.core.main_window.current_pkg["id"]+".zmd" -
lliurex-store/trunk/fuentes/lliurex-store-gui/usr/share/lliurex-store/lliurex-store-gui/ImageManager.py
r8463 r8703 13 13 pixbuf=image.get_pixbuf() 14 14 if not pixbuf: 15 image=Gtk.Image.new_from_file("/usr/share/icons/ Vibrancy-Colors/status/96/image-missing.png")15 image=Gtk.Image.new_from_file("/usr/share/icons/oxygen/base/64x64/status/image-missing.png") 16 16 pixbuf=image.get_pixbuf() 17 17 img_x=pixbuf.get_width() -
lliurex-store/trunk/fuentes/lliurex-store-gui/usr/share/lliurex-store/lliurex-store-gui/ResourcesManager.py
r7629 r8703 30 30 self.icon_db=Gtk.IconTheme() 31 31 self.icon_db.set_custom_theme("Vibrancy-Dark-Orange") 32 self.package_icon=self.icon_db.lookup_icon("package",256,Gtk.IconLookupFlags.FORCE_SVG ).get_filename() 32 try: 33 self.package_icon=self.icon_db.lookup_icon("package",256,Gtk.IconLookupFlags.FORCE_SVG ).get_filename() 34 except: 35 self.icon_db.set_custom_theme("Humanity") 36 self.package_icon=self.icon_db.lookup_icon("package-x-generic",256,Gtk.IconLookupFlags.FORCE_SVG ).get_filename() 37 33 38 34 39 #def init -
lliurex-store/trunk/fuentes/lliurex-store-gui/usr/share/lliurex-store/lliurex-store-gui/rsrc/lliurex-store.css
r4217 r8703 32 32 { 33 33 34 background -color: rgba(0,0,0,0.7);34 background: rgba(0,0,0,0.7); 35 35 36 36 } … … 50 50 #LIGHT_BLUE_BOX{ 51 51 52 /*background -color: rgba(0,95,219,1);*/53 background -color: #000000;52 /*background: rgba(0,95,219,1);*/ 53 background: #000000; 54 54 } 55 55 … … 58 58 #TRANSPARENT 59 59 { 60 background -color:transparent;60 background:transparent; 61 61 color: transparent; 62 62 } … … 68 68 border:0; 69 69 border-radius: 0; 70 color:white; 71 background-color: transparent; 70 /* color:white;*/ 71 color:grey; 72 background: transparent; 72 73 transition: none; 73 74 animation-delay: 0ms; … … 77 78 { 78 79 color:rgba(0,0,0,0.8); 79 font: Roboto 11;80 font: 11px Roboto; 80 81 text-shadow: 0px 0px 1px white; 81 82 … … 85 86 #SECTION_BOX:hover { 86 87 background-image: -gtk-gradient (linear, left top, right top, from ( rgba(79,142,217,1) ), to (rgba(79,142,217,1))); 88 color:white; 87 89 88 90 } … … 102 104 #MENU_BUTTON{ 103 105 106 background:red; 104 107 background-image: url("icons/llx-store.svg"); 105 background-color:red;106 108 border-color: black; 107 109 border: 0px; … … 169 171 170 172 color:white; 171 font: Roboto 25;173 font: 25px Roboto; 172 174 } 173 175 … … 175 177 176 178 color:white; 177 font: Roboto 22;179 font: 22px Roboto; 178 180 } 179 181 … … 181 183 182 184 color: #A0A0A0; 183 font: Roboto 10;185 font: 10px Roboto; 184 186 } 185 187 186 188 #ROBOTO_MEDIUM_GRAY{ 187 189 color: #A0A0A0; 188 font: Roboto 12;190 font: 12px Roboto; 189 191 } 190 192 191 193 #SHORT_DESCRIPTION{ 192 194 color: white; 193 font: Roboto Light 12;195 font: 12px Roboto Light; 194 196 } 195 197 196 198 #DETAILS_LABEL{ 197 199 color:white; 198 font: Roboto 13;200 font: 13px Roboto; 199 201 } 200 202 201 203 #DETAILS_OPTIONS{ 202 204 color: #A0A0A0; 203 font: Roboto 10;205 font: 10px Roboto; 204 206 } 205 207 206 208 #DETAILS_VALUES{ 207 209 color: white; 208 font: Roboto 10;210 font: 10px Roboto; 209 211 } 210 212 … … 217 219 border: none; 218 220 color: white; 219 font: Roboto 14;221 font: 14px Roboto; 220 222 background-image:-gtk-gradient (linear, left top, left bottom, from (#5294e2), to (#5294e2)); 221 223 text-shadow: none; … … 235 237 border: none; 236 238 color: white; 237 font: Roboto 16;239 font: 16px Roboto; 238 240 background-image:-gtk-gradient (linear, left top, left bottom, from (#5294e2), to (#5294e2)); 239 241 text-shadow: none; … … 253 255 border: none; 254 256 color: white; 255 font: Roboto 16;256 background -color: #F44336;257 font: 16px Roboto; 258 background: #F44336; 257 259 text-shadow: none; 258 260 … … 260 262 261 263 #UNINSTALL_BUTTON:hover { 262 background -color: #f45936;264 background: #f45936; 263 265 } 264 266 … … 270 272 border: none; 271 273 color: white; 272 font: Roboto 16;273 background -color: #4CAF50;274 font: 16px Roboto; 275 background: #4CAF50; 274 276 text-shadow: none; 275 277 … … 277 279 278 280 #OPEN_BUTTON:hover { 279 background -color: #81C784;281 background: #81C784; 280 282 } 281 283 … … 306 308 box-shadow: none; 307 309 border-color: transparent; 308 background -color: transparent;310 background: transparent; 309 311 transition-property: background-image, box-shadow; 310 312 transition-duration: 250ms; … … 316 318 #RELATED_BUTTON:backdrop { 317 319 318 background -color: transparent;320 background: transparent; 319 321 } 320 322 … … 330 332 #RELATED_LABEL { 331 333 color:white; 332 font: Roboto 16;334 font: 16px Roboto; 333 335 } 334 336 … … 336 338 #MEDIA_BUTTON { 337 339 border-radius: 0px; 338 background -color: white;340 background: white; 339 341 } 340 342 … … 344 346 345 347 346 background -color: transparent;348 background: transparent; 347 349 348 350 } … … 350 352 #BACK_BUTTON:hover { 351 353 border-radius: 0%; 352 background -color: rgba(34,69,128,1);354 background: rgba(34,69,128,1); 353 355 } 354 356 355 357 #BACK_BUTTON:active { 356 358 border-radius: 100%; 357 background -color: rgb(50,101,187);359 background: rgb(50,101,187); 358 360 transition: 200ms ease-out; 359 361 } … … 375 377 376 378 .scrollbar .trough { 377 background -color: transparent;379 background: transparent; 378 380 border: 0px; 379 381 … … 381 383 382 384 .scrollbar .slider { 383 background -color: rgba(90,140,220,0.7);385 background: rgba(90,140,220,0.7); 384 386 385 387 } … … 388 390 389 391 background-image: none; 390 background -color: transparent;392 background: transparent; 391 393 border: 0px; 392 394 } … … 401 403 402 404 box-shadow: none; 403 background -color: transparent;405 background: transparent; 404 406 background-image: none; 405 407 border: 0px; … … 426 428 background-position: 50% 50%; 427 429 background-repeat: no-repeat; 428 background -color: transparent;430 background: transparent; 429 431 animation: bounce-image infinite ease-out 2s; 430 432 animation-delay: 0ms; … … 437 439 background-position: 50% 50%; 438 440 background-repeat: no-repeat; 439 background -color: transparent;441 background: transparent; 440 442 animation: bounce-image infinite ease-out 2s; 441 443 animation-delay: 100ms; … … 448 450 background-position: 50% 50%; 449 451 background-repeat: no-repeat; 450 background -color: transparent;452 background: transparent; 451 453 animation: bounce-image infinite ease-out 2s; 452 454 animation-delay: 200ms; … … 459 461 background-position: 50% 50%; 460 462 background-repeat: no-repeat; 461 background -color: transparent;463 background: transparent; 462 464 animation: bounce-image infinite ease-out 2s; 463 465 animation-delay: 300ms; … … 470 472 background-position: 50% 50%; 471 473 background-repeat: no-repeat; 472 background -color: transparent;474 background: transparent; 473 475 animation: bounce-image infinite ease-out 2s; 474 476 animation-delay: 400ms; … … 481 483 background-position: 50% 50%; 482 484 background-repeat: no-repeat; 483 background -color: transparent;485 background: transparent; 484 486 animation: bounce-image infinite ease-out 2s; 485 487 animation-delay: 500ms; … … 492 494 background-position: 50% 50%; 493 495 background-repeat: no-repeat; 494 background -color: transparent;496 background: transparent; 495 497 animation: bounce-image infinite ease-out 2s; 496 498 animation-delay: 600ms; … … 499 501 500 502 #TEST{ 501 background -color: red;503 background: red; 502 504 box-shadow: none; 503 505 background-image: none;
Note: See TracChangeset
for help on using the changeset viewer.