Overview
Comment:Fix clickable row in tables that are not lists
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev | 1.0.0-rc6
Files: files | file ages | folders
SHA1: 5467e536da9c375f83f5ad3ed3f639cafa5ca97d
User & Date: bohwaz on 2020-12-05 10:44:56
Other Links: branch diff | manifest | tags
Context
2020-12-05
11:14
Fix issues in user export when list is empty, and fix CSV export when iterator is empty check-in: 586553935d user: bohwaz tags: dev
10:44
Fix clickable row in tables that are not lists check-in: 5467e536da user: bohwaz tags: dev, 1.0.0-rc6
10:44
Make array_transpose behave nicely with missing rows in some columns check-in: 235afc802e user: bohwaz tags: dev
Changes

Modified src/VERSION from [985e0c5790] to [2efc8755ad].

1
1.0.0-rc5
|
1
1.0.0-rc6

Modified src/templates/acc/charts/accounts/selector.tpl from [1e7461b438] to [6cbc945144].

50
51
52
53
54
55
56
57
58
59
			</tr>
		{/foreach}
		</tbody>
	</table>

{/if}

<script type="text/javascript" src="{$admin_url}static/scripts/selector.js"></script>

{include file="admin/_foot.tpl"}







|


50
51
52
53
54
55
56
57
58
59
			</tr>
		{/foreach}
		</tbody>
	</table>

{/if}

<script type="text/javascript" src="{$admin_url}static/scripts/selector.js?{$version_hash}"></script>

{include file="admin/_foot.tpl"}

Modified src/www/admin/static/styles/03-forms.css from [c2b57b3af5] to [0019219fcb].

8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

fieldset legend {
    padding: 0 0.5em;
    font-weight: bold;
    color: #000;
}

table.list tr.clickable:hover {
    cursor: pointer;
    color: #633;
    background: #ffc;

}

table tr.focused {
    color: #633;
    background: #ffc !important;
    box-shadow: 0 0 5px .2rem #990;
}







|



<







8
9
10
11
12
13
14
15
16
17
18

19
20
21
22
23
24
25

fieldset legend {
    padding: 0 0.5em;
    font-weight: bold;
    color: #000;
}

table tr.clickable:hover {
    cursor: pointer;
    color: #633;
    background: #ffc;

}

table tr.focused {
    color: #633;
    background: #ffc !important;
    box-shadow: 0 0 5px .2rem #990;
}