Standardized SVG icon source sizes
New icons New PLaneT logo
|
@ -187,10 +187,10 @@ profile todo:
|
|||
(super-make-object bitmap))])
|
||||
note%)))
|
||||
|
||||
(define bug-note% (make-note% "stop-multi.png" (stop-signs-icon 24)))
|
||||
(define bug-note% (make-note% "stop-multi.png" (stop-signs-icon)))
|
||||
(define mf-note% (make-note% "mf.gif" (include-bitmap (lib "icons/mf.gif") 'gif)))
|
||||
(define file-note% (make-note% "stop-22x22.png" (stop-sign-icon 'red 24)))
|
||||
(define small-planet-bitmap (planet-logo #f 24))
|
||||
(define file-note% (make-note% "stop-22x22.png" (stop-sign-icon)))
|
||||
(define small-planet-bitmap (earth-icon))
|
||||
(define planet-note% (make-note% "small-planet.png" small-planet-bitmap))
|
||||
|
||||
;; display-stats : (syntax -> syntax)
|
||||
|
|
|
@ -38,7 +38,7 @@ module browser threading seems wrong.
|
|||
"local-member-names.rkt"
|
||||
"eval-helpers.rkt"
|
||||
(prefix-in drracket:arrow: "../arrow.rkt")
|
||||
(prefix-in icons: icons)
|
||||
(prefix-in icons: icons) (prefix-in pict: slideshow/pict)
|
||||
|
||||
mred
|
||||
(prefix-in mred: mred)
|
||||
|
@ -387,7 +387,16 @@ module browser threading seems wrong.
|
|||
|
||||
(define execute-bitmap (icons:go-icon 'green (icons:toolbar-icon-height)))
|
||||
(define break-bitmap (icons:stop-icon 'red (icons:toolbar-icon-height)))
|
||||
(define save-bitmap (icons:disk-icon #f (icons:toolbar-icon-height)))
|
||||
|
||||
(define blue-arrow-pict (icons:right-arrow-icon-pict 'blue (* 3/4 (icons:toolbar-icon-height))))
|
||||
(define disk-pict (icons:disk-icon-pict 'orange (icons:toolbar-icon-height)))
|
||||
|
||||
(define small-save-bitmap
|
||||
(pict:pict->bitmap
|
||||
(pict:rc-superimpose
|
||||
disk-pict (pict:inset blue-arrow-pict 0 0 (* 1/2 (icons:toolbar-icon-height)) 0))))
|
||||
|
||||
(define save-bitmap (pict:pict->bitmap (pict:hc-append blue-arrow-pict disk-pict)))
|
||||
|
||||
(define-values (get-program-editor-mixin add-to-program-editor-mixin)
|
||||
(let* ([program-editor-mixin
|
||||
|
@ -4171,6 +4180,7 @@ module browser threading seems wrong.
|
|||
(save)
|
||||
(send definitions-canvas focus)))]
|
||||
[bitmap save-bitmap]
|
||||
[alternate-bitmap small-save-bitmap]
|
||||
[label (string-constant save-button-label)]))
|
||||
(register-toolbar-button save-button)
|
||||
|
||||
|
@ -4687,7 +4697,7 @@ module browser threading seems wrong.
|
|||
[(null? l) '()]
|
||||
[else (cons (car l) (loop (cdr l) (- n 1)))])))
|
||||
|
||||
(define very-small-planet-bitmap (icons:planet-logo #f 16))
|
||||
(define very-small-planet-bitmap (icons:earth-icon (icons:toolbar-icon-height)))
|
||||
|
||||
(define saved-bug-reports-window #f)
|
||||
(define saved-bug-reports-panel #f)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
(require racket/class
|
||||
racket/gui/base
|
||||
string-constants/string-constant
|
||||
icons)
|
||||
icons slideshow/pict)
|
||||
(provide syncheck-drracket-button
|
||||
syncheck-bitmap
|
||||
syncheck-small-bitmap
|
||||
|
@ -10,8 +10,14 @@
|
|||
|
||||
(define-local-member-name syncheck:button-callback)
|
||||
|
||||
(define syncheck-bitmap (check-syntax-icon (toolbar-icon-height)))
|
||||
(define syncheck-small-bitmap (check-syntax-small-icon (toolbar-icon-height)))
|
||||
(define syncheck-bitmap
|
||||
(pict->bitmap (hb-append (magnifying-glass-left-icon-pict (* 7/8 (toolbar-icon-height)))
|
||||
(check-icon-pict 'green (toolbar-icon-height)))))
|
||||
|
||||
(define syncheck-small-bitmap
|
||||
(pict->bitmap (rb-superimpose (hc-append (check-icon-pict 'green (toolbar-icon-height))
|
||||
(blank (* 1/4 (toolbar-icon-height))))
|
||||
(magnifying-glass-icon-pict (* 3/4 (toolbar-icon-height))))))
|
||||
|
||||
(define syncheck-drracket-button
|
||||
(list
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
icon-styles
|
||||
icon-style/c
|
||||
toolbar-icon-height
|
||||
default-icon-height
|
||||
default-icon-style
|
||||
load-icon-pict
|
||||
load-icon
|
||||
format-icon-name
|
||||
icon-categories
|
||||
icon-names
|
||||
|
||||
|
@ -30,12 +30,18 @@
|
|||
pause-icon pause-icon-pict
|
||||
stop-sign-icon stop-sign-icon-pict
|
||||
check-icon check-icon-pict
|
||||
x-icon x-icon-pict
|
||||
magnifying-glass-icon magnifying-glass-icon-pict
|
||||
magnifying-glass-left-icon magnifying-glass-left-icon-pict
|
||||
disk-icon disk-icon-pict
|
||||
up-arrow-icon up-arrow-icon-pict
|
||||
down-arrow-icon down-arrow-icon-pict
|
||||
left-arrow-icon left-arrow-icon-pict
|
||||
right-arrow-icon right-arrow-icon-pict
|
||||
stop-signs-icon stop-signs-icon-pict
|
||||
macro-stepper-icon macro-stepper-icon-pict
|
||||
check-syntax-icon check-syntax-icon-pict
|
||||
check-syntax-small-icon check-syntax-small-icon-pict
|
||||
earth-icon earth-icon-pict
|
||||
moon-icon moon-icon-pict
|
||||
hash-quote-icon hash-quote-icon-pict
|
||||
plus-icon plus-icon-pict
|
||||
plt-logo plt-logo-pict
|
||||
planet-logo planet-logo-pict))
|
||||
|
|
|
@ -11,29 +11,38 @@
|
|||
(provide (all-defined-out))
|
||||
|
||||
(defthing icon-styles (listof symbol?) #:document-value '(diffuse shiny))
|
||||
(defcontract icon-style/c (or/c 'diffuse 'shiny))
|
||||
(defcontract icon-style/c (or/c #f 'diffuse 'shiny))
|
||||
|
||||
(defparam toolbar-icon-height (>/c 0) 16)
|
||||
(defparam toolbar-icon-height (>/c 1) 16)
|
||||
(defparam default-icon-height (>/c 1) 24)
|
||||
(defparam default-icon-style (or/c 'diffuse 'shiny) 'diffuse)
|
||||
|
||||
(defproc (load-icon-pict [category string?] [name string?] [height (>=/c 0)]) pict?
|
||||
(define (icon-file-name category name color height style) string?
|
||||
(define cs-name (cond [(and color style) (format "~a/~a-~a" color name style)]
|
||||
[color (format "~a/~a" color name)]
|
||||
[style (format "~a-~a" name style)]
|
||||
[else (format "~a" name)]))
|
||||
(format "~a/~a/~a.png" category height cs-name))
|
||||
|
||||
(defproc (load-icon-pict [category string?]
|
||||
[name string?]
|
||||
[color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(define hs (icon-category-heights category))
|
||||
(define icon-height
|
||||
(let ([h (for/first ([h (in-list hs)] #:when (height . <= . h)) h)])
|
||||
(if h h (last hs))))
|
||||
(define icon-path
|
||||
(build-path svg-icons-base-path category (format "~a" icon-height) (format "~a.png" name)))
|
||||
(build-path svg-icons-base-path (icon-file-name category name color icon-height style)))
|
||||
(scale (bitmap icon-path) (/ height icon-height)))
|
||||
|
||||
(defproc (load-icon [category string?] [name string?] [height (>=/c 0)]) (is-a?/c bitmap%)
|
||||
(pict->bitmap (load-icon-pict category name height)))
|
||||
|
||||
(defproc (format-icon-name [name string?] [color icon-color/c]
|
||||
[style (or/c icon-style/c #f) (default-icon-style)]) string?
|
||||
(cond [(and color style) (format "~a/~a-~a" color name style)]
|
||||
[color (format "~a/~a" color name)]
|
||||
[style (format "~a-~a" name style)]
|
||||
[else (format "~a" name)]))
|
||||
(defproc (load-icon [category string?]
|
||||
[name string?]
|
||||
[color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) (is-a?/c bitmap%)
|
||||
(pict->bitmap (load-icon-pict category name color height style)))
|
||||
|
||||
(defproc (icon-categories) (listof string?)
|
||||
(remove-duplicates
|
||||
|
@ -59,138 +68,123 @@
|
|||
(path->string (path-replace-suffix dir-path ""))))
|
||||
|
||||
;; ===================================================================================================
|
||||
;; Common icon pict contructors
|
||||
;; Icon pict contructors
|
||||
|
||||
(defproc (go-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "run" (format-icon-name "go" color style) height))
|
||||
|
||||
(defproc (bar-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "run" (format-icon-name "bar" color style) height))
|
||||
|
||||
(defproc (back-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "run" (format-icon-name "back" color style) height))
|
||||
|
||||
(defproc (stop-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "run" (format-icon-name "stop" color style) height))
|
||||
|
||||
(defproc (step-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (go-icon-pict color height style)
|
||||
(bar-icon-pict color height style)))
|
||||
|
||||
(defproc (step-back-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (bar-icon-pict color height style)
|
||||
(back-icon-pict color height style)))
|
||||
|
||||
(defproc (continue-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
(define-syntax-rule (define-make-colorized-icon-pict [make-icon-pict category name] ...)
|
||||
(begin
|
||||
(defproc (make-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (bar-icon-pict color height style)
|
||||
(go-icon-pict color height style)))
|
||||
(load-icon-pict category name color height style))
|
||||
...))
|
||||
|
||||
(defproc (continue-back-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
(define-syntax-rule (define-make-icon-pict [make-icon-pict category name] ...)
|
||||
(begin
|
||||
(defproc (make-icon-pict [height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict category name #f height style))
|
||||
...))
|
||||
|
||||
(define-make-colorized-icon-pict
|
||||
[go-icon-pict "control" "go"]
|
||||
[bar-icon-pict "control" "bar"]
|
||||
[back-icon-pict "control" "back"]
|
||||
[stop-icon-pict "control" "stop"]
|
||||
[check-icon-pict "check" "check"]
|
||||
[x-icon-pict "check" "x"]
|
||||
[disk-icon-pict "misc" "disk"]
|
||||
[plus-icon-pict "symbol" "plus"]
|
||||
[up-arrow-icon-pict "arrow" "up"]
|
||||
[down-arrow-icon-pict "arrow" "down"]
|
||||
[left-arrow-icon-pict "arrow" "left"]
|
||||
[right-arrow-icon-pict "arrow" "right"]
|
||||
)
|
||||
|
||||
(define-make-icon-pict
|
||||
[stop-sign-icon-pict "sign" "stop"]
|
||||
[magnifying-glass-icon-pict "misc" "magnifying-glass"]
|
||||
[magnifying-glass-left-icon-pict "misc" "magnifying-glass-left"]
|
||||
[earth-icon-pict "misc" "earth"]
|
||||
[moon-icon-pict "misc" "moon"]
|
||||
[hash-quote-icon-pict "symbol" "hash-quote"]
|
||||
[plt-logo-pict "logo" "plt"]
|
||||
[planet-logo-pict "logo" "planet"]
|
||||
)
|
||||
|
||||
(defproc (step-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (go-icon-pict color height style) (bar-icon-pict color height style)))
|
||||
|
||||
(defproc (step-back-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (bar-icon-pict color height style) (back-icon-pict color height style)))
|
||||
|
||||
(defproc (continue-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (bar-icon-pict color height style) (go-icon-pict color height style)))
|
||||
|
||||
(defproc (continue-back-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(hc-append (back-icon-pict color height style)
|
||||
(bar-icon-pict color height style)))
|
||||
(hc-append (back-icon-pict color height style) (bar-icon-pict color height style)))
|
||||
|
||||
(defproc (fast-forward-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
(defproc (fast-forward-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(define go (go-icon-pict color height style))
|
||||
(scale (hc-append go go) 3/4 1))
|
||||
|
||||
(defproc (rewind-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
(defproc (rewind-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(define back (back-icon-pict color height style))
|
||||
(scale (hc-append back back) 3/4 1))
|
||||
|
||||
(defproc (pause-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
(defproc (pause-icon-pict [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(define gap (blank (* 1/16 height)))
|
||||
(define bar (bar-icon-pict color height style))
|
||||
(hc-append gap bar gap bar gap))
|
||||
|
||||
(defproc (stop-sign-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "sign" (format-icon-name "stop-sign" color style) height))
|
||||
|
||||
(defproc (check-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "check" (format-icon-name "check" color style) height))
|
||||
|
||||
(defproc (magnifying-glass-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "misc" (format-icon-name "magnifying-glass" color style) height))
|
||||
|
||||
(defproc (magnifying-glass-left-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "misc" (format-icon-name "magnifying-glass-left" color style) height))
|
||||
|
||||
(defproc (disk-icon-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "misc" (format-icon-name "disk" color style) height))
|
||||
|
||||
;; Icons for tools and other special uses
|
||||
|
||||
(defproc (stop-signs-icon-pict [height (>=/c 0)] [style icon-style/c (default-icon-style)]) pict?
|
||||
(defproc (stop-signs-icon-pict [height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(define h (* 2/3 height))
|
||||
(define s1 (inset (stop-sign-icon-pict 'red h style) (* 1/4 h) (* 1/2 h) 0 0))
|
||||
(define s2 (inset (stop-sign-icon-pict 'orange h style) (* 1/8 h) (* 1/4 h) 0 0))
|
||||
(define s3 (stop-sign-icon-pict 'cyan h style))
|
||||
(define s1 (inset (stop-sign-icon-pict h style) (* 1/4 h) (* 1/2 h) 0 0))
|
||||
(define s2 (inset (stop-sign-icon-pict h style) (* 1/8 h) (* 1/4 h) 0 0))
|
||||
(define s3 (stop-sign-icon-pict h style))
|
||||
(inset (lt-superimpose s3 s2 s1) (* 1/8 h) 0 (* 1/8 h) 0))
|
||||
|
||||
(defproc (macro-stepper-icon-pict [height (>=/c 0)] [style icon-style/c (default-icon-style)]) pict?
|
||||
(ht-append (load-icon-pict "misc" (format-icon-name "hash-quote" #f style) height)
|
||||
(step-icon-pict 'blue height style)))
|
||||
|
||||
(defproc (check-syntax-icon-pict [height (>=/c 0)] [style icon-style/c (default-icon-style)]) pict?
|
||||
(hb-append
|
||||
(magnifying-glass-left-icon-pict #f (* 7/8 height) style)
|
||||
(check-icon-pict 'green height style)))
|
||||
|
||||
(defproc (check-syntax-small-icon-pict [height (>=/c 0)] [style icon-style/c (default-icon-style)]
|
||||
) pict?
|
||||
(rb-superimpose
|
||||
(hc-append (check-icon-pict 'green height style)
|
||||
(blank (* 1/4 height)))
|
||||
(magnifying-glass-icon-pict #f (* 3/4 height) style)))
|
||||
|
||||
(defproc (plt-logo-pict [height (>=/c 0)] [style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "logo" (format-icon-name "plt-logo" #f style) height))
|
||||
|
||||
(defproc (planet-logo-pict [color icon-color/c] [height (>=/c 0)]
|
||||
[style icon-style/c (default-icon-style)]) pict?
|
||||
(load-icon-pict "logo" (format-icon-name "planet-logo" color style) height))
|
||||
|
||||
;; ===================================================================================================
|
||||
;; Common icon contructors
|
||||
;; Icon contructors
|
||||
|
||||
(define-syntax (define-wrapped-icon-fun stx)
|
||||
(define-syntax (define-make-colorized-icon stx)
|
||||
(syntax-case stx ()
|
||||
[(_ f ...)
|
||||
(with-syntax ([(f-pict ...) (map (λ (f) (format-id f "~a-pict" f))
|
||||
(syntax->list #'(f ...)))])
|
||||
(syntax/loc stx
|
||||
(begin (defproc (f [color icon-color/c] [height (>=/c 0)]
|
||||
(begin (defproc (f [color icon-color/c]
|
||||
[height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) (is-a?/c bitmap%)
|
||||
(pict->bitmap (f-pict color height style)))
|
||||
...)))]))
|
||||
|
||||
(define-syntax (define-wrapped-icon-fun/no-color stx)
|
||||
(define-syntax (define-make-icon stx)
|
||||
(syntax-case stx ()
|
||||
[(_ f ...)
|
||||
(with-syntax ([(f-pict ...) (map (λ (f) (format-id f "~a-pict" f))
|
||||
(syntax->list #'(f ...)))])
|
||||
(syntax/loc stx
|
||||
(begin (defproc (f [height (>=/c 0)]
|
||||
(begin (defproc (f [height (>=/c 0) (default-icon-height)]
|
||||
[style icon-style/c (default-icon-style)]) (is-a?/c bitmap%)
|
||||
(pict->bitmap (f-pict height style)))
|
||||
...)))]))
|
||||
|
||||
(define-wrapped-icon-fun
|
||||
(define-make-colorized-icon
|
||||
go-icon
|
||||
bar-icon
|
||||
back-icon
|
||||
|
@ -202,16 +196,24 @@
|
|||
fast-forward-icon
|
||||
rewind-icon
|
||||
pause-icon
|
||||
stop-sign-icon
|
||||
check-icon
|
||||
x-icon
|
||||
disk-icon
|
||||
plus-icon
|
||||
up-arrow-icon
|
||||
down-arrow-icon
|
||||
left-arrow-icon
|
||||
right-arrow-icon
|
||||
)
|
||||
|
||||
(define-make-icon
|
||||
stop-sign-icon
|
||||
stop-signs-icon
|
||||
magnifying-glass-icon
|
||||
magnifying-glass-left-icon
|
||||
disk-icon
|
||||
planet-logo)
|
||||
|
||||
(define-wrapped-icon-fun/no-color
|
||||
stop-signs-icon
|
||||
macro-stepper-icon
|
||||
check-syntax-icon
|
||||
check-syntax-small-icon
|
||||
plt-logo)
|
||||
earth-icon
|
||||
moon-icon
|
||||
hash-quote-icon
|
||||
plt-logo
|
||||
planet-logo
|
||||
)
|
||||
|
|
BIN
collects/icons/private/svg/arrow/16/black/down-diffuse.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
collects/icons/private/svg/arrow/16/black/down-shiny.png
Normal file
After Width: | Height: | Size: 779 B |
BIN
collects/icons/private/svg/arrow/16/black/left-diffuse.png
Normal file
After Width: | Height: | Size: 663 B |
BIN
collects/icons/private/svg/arrow/16/black/left-shiny.png
Normal file
After Width: | Height: | Size: 732 B |
BIN
collects/icons/private/svg/arrow/16/black/right-diffuse.png
Normal file
After Width: | Height: | Size: 669 B |
BIN
collects/icons/private/svg/arrow/16/black/right-shiny.png
Normal file
After Width: | Height: | Size: 708 B |
BIN
collects/icons/private/svg/arrow/16/black/up-diffuse.png
Normal file
After Width: | Height: | Size: 655 B |
BIN
collects/icons/private/svg/arrow/16/black/up-shiny.png
Normal file
After Width: | Height: | Size: 737 B |
BIN
collects/icons/private/svg/arrow/16/blue/down-diffuse.png
Normal file
After Width: | Height: | Size: 701 B |
BIN
collects/icons/private/svg/arrow/16/blue/down-shiny.png
Normal file
After Width: | Height: | Size: 786 B |
BIN
collects/icons/private/svg/arrow/16/blue/left-diffuse.png
Normal file
After Width: | Height: | Size: 706 B |
BIN
collects/icons/private/svg/arrow/16/blue/left-shiny.png
Normal file
After Width: | Height: | Size: 733 B |
BIN
collects/icons/private/svg/arrow/16/blue/right-diffuse.png
Normal file
After Width: | Height: | Size: 725 B |
BIN
collects/icons/private/svg/arrow/16/blue/right-shiny.png
Normal file
After Width: | Height: | Size: 743 B |
BIN
collects/icons/private/svg/arrow/16/blue/up-diffuse.png
Normal file
After Width: | Height: | Size: 723 B |
BIN
collects/icons/private/svg/arrow/16/blue/up-shiny.png
Normal file
After Width: | Height: | Size: 766 B |
BIN
collects/icons/private/svg/arrow/16/cyan/down-diffuse.png
Normal file
After Width: | Height: | Size: 708 B |
BIN
collects/icons/private/svg/arrow/16/cyan/down-shiny.png
Normal file
After Width: | Height: | Size: 786 B |
BIN
collects/icons/private/svg/arrow/16/cyan/left-diffuse.png
Normal file
After Width: | Height: | Size: 708 B |
BIN
collects/icons/private/svg/arrow/16/cyan/left-shiny.png
Normal file
After Width: | Height: | Size: 741 B |
BIN
collects/icons/private/svg/arrow/16/cyan/right-diffuse.png
Normal file
After Width: | Height: | Size: 738 B |
BIN
collects/icons/private/svg/arrow/16/cyan/right-shiny.png
Normal file
After Width: | Height: | Size: 739 B |
BIN
collects/icons/private/svg/arrow/16/cyan/up-diffuse.png
Normal file
After Width: | Height: | Size: 726 B |
BIN
collects/icons/private/svg/arrow/16/cyan/up-shiny.png
Normal file
After Width: | Height: | Size: 773 B |
BIN
collects/icons/private/svg/arrow/16/down-diffuse.png
Normal file
After Width: | Height: | Size: 708 B |
BIN
collects/icons/private/svg/arrow/16/down-shiny.png
Normal file
After Width: | Height: | Size: 791 B |
BIN
collects/icons/private/svg/arrow/16/green/down-diffuse.png
Normal file
After Width: | Height: | Size: 694 B |
BIN
collects/icons/private/svg/arrow/16/green/down-shiny.png
Normal file
After Width: | Height: | Size: 792 B |
BIN
collects/icons/private/svg/arrow/16/green/left-diffuse.png
Normal file
After Width: | Height: | Size: 705 B |
BIN
collects/icons/private/svg/arrow/16/green/left-shiny.png
Normal file
After Width: | Height: | Size: 752 B |
BIN
collects/icons/private/svg/arrow/16/green/right-diffuse.png
Normal file
After Width: | Height: | Size: 724 B |
BIN
collects/icons/private/svg/arrow/16/green/right-shiny.png
Normal file
After Width: | Height: | Size: 746 B |
BIN
collects/icons/private/svg/arrow/16/green/up-diffuse.png
Normal file
After Width: | Height: | Size: 710 B |
BIN
collects/icons/private/svg/arrow/16/green/up-shiny.png
Normal file
After Width: | Height: | Size: 776 B |
BIN
collects/icons/private/svg/arrow/16/left-diffuse.png
Normal file
After Width: | Height: | Size: 706 B |
BIN
collects/icons/private/svg/arrow/16/left-shiny.png
Normal file
After Width: | Height: | Size: 741 B |
BIN
collects/icons/private/svg/arrow/16/orange/down-diffuse.png
Normal file
After Width: | Height: | Size: 710 B |
BIN
collects/icons/private/svg/arrow/16/orange/down-shiny.png
Normal file
After Width: | Height: | Size: 780 B |
BIN
collects/icons/private/svg/arrow/16/orange/left-diffuse.png
Normal file
After Width: | Height: | Size: 698 B |
BIN
collects/icons/private/svg/arrow/16/orange/left-shiny.png
Normal file
After Width: | Height: | Size: 738 B |
BIN
collects/icons/private/svg/arrow/16/orange/right-diffuse.png
Normal file
After Width: | Height: | Size: 727 B |
BIN
collects/icons/private/svg/arrow/16/orange/right-shiny.png
Normal file
After Width: | Height: | Size: 726 B |
BIN
collects/icons/private/svg/arrow/16/orange/up-diffuse.png
Normal file
After Width: | Height: | Size: 722 B |
BIN
collects/icons/private/svg/arrow/16/orange/up-shiny.png
Normal file
After Width: | Height: | Size: 752 B |
BIN
collects/icons/private/svg/arrow/16/purple/down-diffuse.png
Normal file
After Width: | Height: | Size: 710 B |
BIN
collects/icons/private/svg/arrow/16/purple/down-shiny.png
Normal file
After Width: | Height: | Size: 783 B |
BIN
collects/icons/private/svg/arrow/16/purple/left-diffuse.png
Normal file
After Width: | Height: | Size: 691 B |
BIN
collects/icons/private/svg/arrow/16/purple/left-shiny.png
Normal file
After Width: | Height: | Size: 749 B |
BIN
collects/icons/private/svg/arrow/16/purple/right-diffuse.png
Normal file
After Width: | Height: | Size: 722 B |
BIN
collects/icons/private/svg/arrow/16/purple/right-shiny.png
Normal file
After Width: | Height: | Size: 742 B |
BIN
collects/icons/private/svg/arrow/16/purple/up-diffuse.png
Normal file
After Width: | Height: | Size: 721 B |
BIN
collects/icons/private/svg/arrow/16/purple/up-shiny.png
Normal file
After Width: | Height: | Size: 778 B |
BIN
collects/icons/private/svg/arrow/16/red/down-diffuse.png
Normal file
After Width: | Height: | Size: 702 B |
BIN
collects/icons/private/svg/arrow/16/red/down-shiny.png
Normal file
After Width: | Height: | Size: 775 B |
BIN
collects/icons/private/svg/arrow/16/red/left-diffuse.png
Normal file
After Width: | Height: | Size: 698 B |
BIN
collects/icons/private/svg/arrow/16/red/left-shiny.png
Normal file
After Width: | Height: | Size: 736 B |
BIN
collects/icons/private/svg/arrow/16/red/right-diffuse.png
Normal file
After Width: | Height: | Size: 728 B |
BIN
collects/icons/private/svg/arrow/16/red/right-shiny.png
Normal file
After Width: | Height: | Size: 736 B |
BIN
collects/icons/private/svg/arrow/16/red/up-diffuse.png
Normal file
After Width: | Height: | Size: 720 B |
BIN
collects/icons/private/svg/arrow/16/red/up-shiny.png
Normal file
After Width: | Height: | Size: 758 B |
BIN
collects/icons/private/svg/arrow/16/right-diffuse.png
Normal file
After Width: | Height: | Size: 725 B |
BIN
collects/icons/private/svg/arrow/16/right-shiny.png
Normal file
After Width: | Height: | Size: 731 B |
BIN
collects/icons/private/svg/arrow/16/up-diffuse.png
Normal file
After Width: | Height: | Size: 721 B |
BIN
collects/icons/private/svg/arrow/16/up-shiny.png
Normal file
After Width: | Height: | Size: 784 B |
BIN
collects/icons/private/svg/arrow/16/white/down-diffuse.png
Normal file
After Width: | Height: | Size: 687 B |
BIN
collects/icons/private/svg/arrow/16/white/down-shiny.png
Normal file
After Width: | Height: | Size: 734 B |
BIN
collects/icons/private/svg/arrow/16/white/left-diffuse.png
Normal file
After Width: | Height: | Size: 664 B |
BIN
collects/icons/private/svg/arrow/16/white/left-shiny.png
Normal file
After Width: | Height: | Size: 705 B |
BIN
collects/icons/private/svg/arrow/16/white/right-diffuse.png
Normal file
After Width: | Height: | Size: 697 B |
BIN
collects/icons/private/svg/arrow/16/white/right-shiny.png
Normal file
After Width: | Height: | Size: 703 B |
BIN
collects/icons/private/svg/arrow/16/white/up-diffuse.png
Normal file
After Width: | Height: | Size: 686 B |
BIN
collects/icons/private/svg/arrow/16/white/up-shiny.png
Normal file
After Width: | Height: | Size: 704 B |
BIN
collects/icons/private/svg/arrow/32/black/down-diffuse.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
collects/icons/private/svg/arrow/32/black/down-shiny.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
collects/icons/private/svg/arrow/32/black/left-diffuse.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
collects/icons/private/svg/arrow/32/black/left-shiny.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/black/right-diffuse.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
collects/icons/private/svg/arrow/32/black/right-shiny.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/black/up-diffuse.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
collects/icons/private/svg/arrow/32/black/up-shiny.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/down-diffuse.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/down-shiny.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/left-diffuse.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/left-shiny.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/right-diffuse.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/right-shiny.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/up-diffuse.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/blue/up-shiny.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/down-diffuse.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/down-shiny.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/left-diffuse.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/left-shiny.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/right-diffuse.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/right-shiny.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
collects/icons/private/svg/arrow/32/cyan/up-diffuse.png
Normal file
After Width: | Height: | Size: 1.6 KiB |