Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'templates/colorpicker.html')
-rw-r--r--templates/colorpicker.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/templates/colorpicker.html b/templates/colorpicker.html
deleted file mode 100644
index ade253f0..00000000
--- a/templates/colorpicker.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<ul class="colorpicker-list">
- <li ng-repeat="color in colors"
- ng-class="{ selected: (color===selected) }"
- ng-click="pick(color)"
- ng-style="{ 'background-color':color}; "></li>
- <li class="randomcolour"
- ng-click="randomizeColour()"
- ng-style="{ 'background-color':random}; ">
- <span class="icon icon-random"></span>
- </li>
-</ul>